Поиск перелетов по заданным датам


Оглавление:


Введение

Для поиска перелетов по заданным датам используется сервис Bargain Finder Max (BargainFinderMaxRQ). Дополнительную информацию по работе с сервисом можно получить в онлайн-справке.

Ниже указаны некоторые обязательные и опциональные элементы запроса к сервису.

Маршрут и даты

Обязательные элементы

Маршрут в поисковом запросе задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/OriginDestinationInformation, соответствующих плечам маршрута. Плечо может содержать один или несколько сегментов (рейсов). Для каждого плеча маршрута необходимо указать:

  • OriginDestinationInformation/@RPH — номер запрашиваемого плеча
  • OriginDestinationInformation/DepartureDateTime — дата и время вылета. Время вылета является обязательным для заполнения, рекомендуется во всех случаях указывать время 11:00
  • OriginDestinationInformation/OriginLocation/@LocationCode — код города или аэропорта вылета
  • OriginDestinationInformation/DestinationLocation/@LocationCode — код города или аэропорта прилета

Копировать
<OriginDestinationInformation RPH="1">
  <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
  <OriginLocation LocationCode="MOW"/>
  <DestinationLocation LocationCode="AER"/>
</OriginDestinationInformation>
<OriginDestinationInformation RPH="2">
  <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
  <OriginLocation LocationCode="AER"/>
  <DestinationLocation LocationCode="MOW"/>
</OriginDestinationInformation>

Тип пунктов вылета и прилета

Для каждого пункта вылета и прилета на маршруте можно установить его тип:

  • значение A — аэропорт
  • значение C — город (вариант по умолчанию, если не указано никакое значение, а город и аэропорт имеют одинаковый код)

Для этого необходимо указать одно из вышеперечисленных значений в /OTA_AirLowFareSearchRQ/OriginDestinationInformation/OriginLocation/@LocationType (пункт вылета) или /OTA_AirLowFareSearchRQ/OriginDestinationInformation/DestinationLocation/@LocationType (пункт прилета). Данная опция может быть актуальна в случае совпадения кодов у города и аэропорта.

Альтернативные аэропорты

Для поиска перелетов с альтернативными аэропортами в Bargain Finder Max можно или указать альтернативные коды аэропортов и городов в запросе или указать радиус для автоматического выбора альтернативных аэропортов:

  • /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/SisterDestinationLocation/@LocationCode — альтернативные коды городов или аэропортов вылета (не более 4)
  • /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/SisterOriginLocation/@LocationCode — альтернативные коды городов или аэропортов прилета (не более 4)
  • /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/SisterDestinationMileage/@Number — максимальное расстояние в милях для автоматического поиска альтернативных аэропортов вылета (не более 100)
  • /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/SisterOriginMileage/@Number — максимальное расстояние в милях для поиска альтернативных аэропортов прилета (не более 100)

Если указать значение true у атрибутов /SisterDestinationMileage/@AllowBorderCross или /SisterOriginMileage/@AllowBorderCross, то альтернативные аэропорт будут найдены только в той же стране, что и указанный в запросе аэропорт или город.

Копировать
<OriginDestinationInformation RPH="1">
  <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
  <OriginLocation LocationCode="BER"/>
  <DestinationLocation LocationCode="PAR"/>
  <TPA_Extensions>
    <SisterDestinationLocation LocationCode="NCE"/>
    <SisterDestinationLocation LocationCode="BRU"/>
    <SisterOriginLocation LocationCode="FRA"/>
    <SisterOriginLocation LocationCode="MUC"/>
  </TPA_Extensions>
</OriginDestinationInformation>

Копировать
<OriginDestinationInformation RPH="1">
  <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
  <OriginLocation LocationCode="BER"/>
  <DestinationLocation LocationCode="PAR"/>
  <TPA_Extensions>
    <SisterDestinationMileage Number="100"/>
    <SisterOriginMileage Number="100"/>
  </TPA_Extensions>
</OriginDestinationInformation>

Время в пути и время вылета

В запросе можно установить требуемый промежуток времени вылета или прилета:

  • OriginDestinationInformation/DepartureWindow — промежуток допустимого времени вылета (например, 10002000 для вылета в промежуток с 10:00 до 20:00)
  • OriginDestinationInformation/ArrivalWindow — промежуток допустимого времени прилета

Время в пути для каждого плеча, включая время пересадок:

  • OriginDestinationInformation/TPA_Extensions/TotalTravelTime/@Min — минимальное время
  • OriginDestinationInformation/TPA_Extensions/TotalTravelTime/@Max — максимальное время

Альтернативное время вылета:

  • OriginDestinationInformation/TPA_Extensions/AlternateTime/@PlusMinus — количество часов, на которое может отличаться время вылета у найденных рейсов относительно заданного для каждого плеча (не более 9)
  • OriginDestinationInformation/TPA_Extensions/AlternateTime/@Minus — количество часов, на которое может быть меньше время вылета у найденных рейсов относительно заданного для каждого плеча (не более 72)

Поиск с известными рейсами

Для поиска вариантов перелетов, в котором рейсы для одного или нескольких плеч уже известны, необходимо для каждого такого плеча указать:

  • /OTA_AirLowFareSearchRQ/OriginDestinationInformation/@Fixed — признак того, что для этого плеча будет применен указанный рейс, значение true
  • /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/Flight — данные о рейсе:
    • Flight/@ArrivalDateTime — дата и время прибытия рейса
    • Flight/@DepartureDateTime — дата и время отправления рейса
    • Flight/@Number — номер рейса
    • Flight/@Type — всегда A
    • Flight/OriginLocation/@LocationCode — аэропорт прибытия
    • Flight/DestinationLocation/@LocationCode — аэропорт отправления
    • Flight/Airline/@Marketing — код маркетингового перевозчика
    • Flight/Airline/@Operating — код оперирующего перевозчика

Копировать
<OriginDestinationInformation RPH="1">
  <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
  <OriginLocation LocationCode="LED"/>
  <DestinationLocation LocationCode="AER"/>
</OriginDestinationInformation>
<OriginDestinationInformation RPH="2">
  <DepartureDateTime>2020-09-08T06:50:00</DepartureDateTime>
  <OriginLocation LocationCode="AER"/>
  <DestinationLocation LocationCode="LED"/>
    <TPA_Extensions>
      <Flight ArrivalDateTime="2020-09-08T09:20:00" DepartureDateTime="2020-09-08T06:50:00" Number="1141" Type="A">
        <OriginLocation LocationCode="AER"/>
        <DestinationLocation LocationCode="SVO"/>
        <Airline Marketing="SU" Operating="SU"/>
      </Flight>
      <Flight ArrivalDateTime="2020-09-08T12:20:00" DepartureDateTime="2020-09-08T10:55:00" Number="14" Type="A">
        <OriginLocation LocationCode="SVO"/>
        <DestinationLocation LocationCode="LED"/>
        <Airline Marketing="SU" Operating="SU"/>
      </Flight>
    </TPA_Extensions>
</OriginDestinationInformation>

Остановки и пересадки

Максимальное количество остановок (как со сменой рейса так и без нее) для всех плеч маршрута задается в атрибуте /OTA_AirLowFareSearchRQ/TravelPreferences/@MaxStopsQuantity.

Для каждого плеча в элементе /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/ConnectionTime можно задать следующие атрибуты:

  • /@Min — минимальное время любой пересадки на данном плече
  • /@Max — максимальное время любой пересадки на данном плече
  • /@ExcludedConnectionBegin — начало временного промежутка, во время которого не могут происходить пересадки в формате HHMM
  • /@ExcludedConnectionEnd — конец временного промежутка, во время которого не могут происходить пересадки в формате HHMM

Также для каждого плеча можно указать список предпочтительных мест для пересадок и остановок в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/OriginDestinationInformation/ConnectionLocations/ConnectionLocation с атрибутом:

  • /@LocationCode — код города или аэропорта

Страны, на территории которых не могут производиться пересадки или остановки, могут быть указаны в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/CountryPref со следующими атрибутами:

  • /@Code — код страны
  • /@PreferLevel — значение Unacceptable

По умолчанию в поисковой выдаче будут представлены только те варианты перелетов, у которых каждая пересадка не больше:

  • 5 часов (300 минут) — для внутренних перелетов
  • 13 часов (780 минут) — для международных перелетов

Для того чтобы получить варианты перелетов с более продолжительными пересадками в запросе к сервису необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/LongConnectTime/@Enable.

В этом случае система выполнит два запроса для поиска расписаний (комбинаций рейсов) и объединит полученные результаты в ответе:

Тип запроса Обычный поиск Поиск с длинными пересадками (Long Connect)
Минимальная продолжительность пересадки Минимальная продолжительность пересадки, установленная в каждом аэропорту (Minimum Connect Time) 5 часов для внутренних перелетов, 13 часов для международных перелетов
Максимальная продолжительность пересадки 5 часов для внутренних перелетов, 13 часов для международных перелетов 24 часа

Для поиска с длинными пересадками можно дополнительно установить:

  • /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/LongConnectPoints/@Min — минимальное количество пересадок
  • /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/LongConnectPoints/@Max — максимальное количество пересадок

Копировать
<LongConnectTime Enable="true"/>
<LongConnectPoints Max="3" Min="1"/>

Для каждого плеча в запросе можно указать необходимость совершения пересадки длиной более 24 часов (stopover) в определенном месте. Для этого в запросе необходимо указать:

  • /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/Stopover/StopoverPoint/@LocationCode — код города или аэропорта для пересадки длиной более 24 часов
  • /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/Stopover/DepartureDateTime — дата вылета из пункта пересадки длиной более 24 часов в пункт назначения

Обратите внимание на то, что для каждого плеча можно указать только один пункт пересадки длиной более 24 часов!

Дополнительно можно указать:

  • /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/Stopover/DepartureWindow — промежуток допустимого времени вылета из пункта пересадки длиной более 24 часов (например, 10002000 для вылета в промежуток с 10:00 до 20:00)
  • /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/Stopover/StopoverPoint/@LocationType — тип пункта пересадки длиной более 24 часов (актуально в случае совпадения кодов у города и аэропорта):
    • значение A — аэропорт
    • значение C — город (вариант по умолчанию, если не указано никакое значение, а город и аэропорт имеют одинаковый код)

Копировать
<OriginDestinationInformation RPH="1">
  <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
  <OriginLocation LocationCode="MOW"/>
  <DestinationLocation LocationCode="NYC"/>
  <TPA_Extensions>
    <Stopover>
      <DepartureDateTime>2020-09-03T00:00:00</DepartureDateTime>
      <DepartureWindow>10002200</DepartureWindow>
      <StopoverPoint LocationCode="IST" LocationType="C"/>
    </Stopover>
  </TPA_Extensions>
</OriginDestinationInformation>

Пассажиры

Количество мест должно быть задано в элементе /OTA_AirLowFareSearchRQ/TravelerInfoSummary/SeatsRequested.

Обратите внимание на то, что количество пассажиров может отличаться от количества мест в том случае, если производится поиск перелетов для младенцев без места

Категории пассажиров задаются в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelerInfoSummary/AirTravelerAvail/PassengerTypeQuantity. Для каждой категории пассажира необходимо указать:

  • PassengerTypeQuantity/@Code — код категории пассажира
  • PassengerTypeQuantity/@Quantity — количество пассажиров данной категории

Коды основных категорий пассажиров:

  • ADT — взрослый пассажир (от 12 лет)
  • CNN — ребенок (от 2 до 12 лет)
  • INF — младенец без места (до 2 лет)
  • INS — младенец с местом (до 2 лет)

Обратите внимание на то, что в некоторых случаях возраст ребенка может влиять стоимость перелета. В этих случаях рекомендуется указывать возраст ребенка в коде категории пассажира. Например, C05 для пятилетнего ребенка.

Классы обслуживания и коды тарифов

Класс обслуживания задается в элементе /OTA_AirLowFareSearchRQ/TravelPreferences/CabinPref. В качестве атрибутов необходимо указать:

  • CabinPref/@PreferLevel — выбран предпочтительный класс обслуживания (значение Preferred)
  • CabinPref/@Cabin — код или название класса обслуживания

Допустимые варианты кодов и названий классов обслуживания:

  • Economy или Y — экономический класс
  • PremiumEconomy или S — улучшенный экономический класс
  • Business или C — бизнес класс
  • PremiumBusiness или J — улучшенный бизнес класс
  • First или F — первый класс
  • PremiumFirst или P — улучшенный первый класс

По умолчанию, если в запросе не указан класс обслуживания, поиск будет производиться так, будто указан экономический класс обслуживания.

Класс обслуживания также может быть задан для каждого плеча в запросе в элементе /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/CabinPref. В качестве атрибутов необходимо указать:

  • CabinPref/@PreferLevel — выбран предпочтительный класс обслуживания (значение Preferred)
  • CabinPref/@Cabin — код или название класса обслуживания

Существует три различных логики выбора класса обслуживания в результатах поиска.

Гибкая логика выбора класса обслуживания включена

Эта логика будет использована по умолчанию, если не установлены иные правила (см. ниже).

В случае использования этой логики выбора класса обслуживания, в результатах поиска будут присутствовать варианты перелетов, содержащие рейсы в заданном классе обслуживания или классе обслуживания выше (в зависимости от стоимости и наличия мест) или рейсы в классе обслуживания ниже (если перелет в заданном классе обслуживания невозможен).

Гибкая логика выбора класса обслуживания отключена

Для активации этой логики необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/JumpCabinLogic/@Disabled.

В случае использования этой логики выбора класса обслуживания, в результатах поиска будут присутствовать варианты перелетов, в которых как минимум один из рейсов будет в заданном классе обслуживания. Остальные рейсы будут или в заданном классе обслуживания или в классе обслуживания ниже (если заданный класс обслуживания недоступен).

Включен поиск только в запрашиваемом классе обслуживания

Для активации этой логики необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/KeepSameCabin/@Enabled.

В случае использования этой логики выбора класса обслуживания, в результатах поиска будут присутствовать варианты перелетов, в которых все рейсы будут в заданном классе обслуживания.

Черный и белый список классов бронирования

Черный и белый список классов бронирования (не классов обслуживания!) для всего запрошенного маршрута задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/ClassOfService. Для каждого класса бронирования необходимо указать:

  • ClassOfService/@Code — класс бронирования
  • ClassOfService/@PreferLevel — добавление класса бронирования в белый (значение Preferred) или черный (значение Unacceptable) список

Черный и белый список классов бронирования для каждого плеча задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/ClassOfService. Для каждого класса бронирования необходимо указать:

  • ClassOfService/@Code — класс бронирования
  • ClassOfService/@PreferLevel — добавление класса бронирования в белый (значение Preferred) или черный (значение Unacceptable) список

Черный и белый список кодов тарифов

Черный и белый список кодов тарифов (не классов обслуживания!) для всего запрошенного маршрута задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FareBasis. Для каждого кода тарифа необходимо указать:

  • FareBasis/@Code — код тарифа
  • FareBasis/@PreferLevel — добавление кода тарифа в белый (значение Preferred) или черный (значение Unacceptable) список

Черный и белый список классов бронирования для каждого плеча задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/FareBasis. Для каждого класса бронирования необходимо указать:

  • FareBasis/@Code — код тарифа
  • FareBasis/@PreferLevel — добавление кода тарифа в белый (значение Preferred) или черный (значение Unacceptable) список

Также сервис позволяет указать вместо кода тарифа маску поиска кода тарифа, в котором помимо букв латинского алфавита и цифр можно использовать следующие спецсимволы:

  • - — ноль или более символов. Например, под условия маски Y-OW подпадут тарифы YOW, YLTOW и YSTDOW
  • ? — один символ. Например, под условия маски Y??OW подпадут тарифы YPROW и YECOW
  • ^X — один символ кроме X (вместо X может быть указана любая буква латинского алфавита или цифра). Например, под условия маски ^YLTOW подпадут тарифы NLTOW, ELTOW, но не подпадет YLTOW

Перевозчики

Черный и белый список маркетинговых и оперирующих перевозчиков для всего запрошенного маршрута

Черный и белый список маркетинговых и оперирующих перевозчиков для всего запрошенного маршрута задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/VendorPref. Для каждого перевозчика необходимо указать:

  • VendorPref/@Code — двухбуквенный код перевозчика
  • VendorPref/@PreferLevel — добавление перевозчика в белый (значение Preferred) или черный (значение Unacceptable) список
  • VendorPref/@Type — тип перевозчика:
    • значение Operating — оперирующий перевозчик
    • значение Marketing — маркетинговый перевозчик (вариант по умолчанию в случае отсутствия любого значения)

Дополнительно в запросе можно указать применимость белого списка перевозчиков: ко всем сегментам каждого найденного перелета или хотя бы к одному сегменту каждого найденного перелета. Для этого необходимо добавить элемент /OTA_AirLowFareSearchRQ/TravelPreferences/VendorPrefApplicability со следующими атрибутами:

  • VendorPrefApplicability/@Value — вариант применимости:
    • значение AllSegments — для всех сегментов
    • значение AtLeastOneSegment — хотя бы для одного сегмента
  • VendorPrefApplicability/@Type — тип перевозчика:
    • значение Operating — оперирующий перевозчик
    • значение Marketing — маркетинговый перевозчик

Максимум можно добавить два элемента: один для белого списка оперирующих перевозчиков и один для белого списка маркетинговых перевозчиков.

Помимо этого, в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/VendorPrefPairing можно указать комбинации маркетинговых и оперирующих перевозчиков для черного или белого списков. Для каждого элемента необходимо указать:

  • VendorPrefPairing/@Applicability — вариант применимости:
    • значение AllSegments — для всех сегментов
    • значение AtLeastOneSegment — хотя бы для одного сегмента
  • VendorPrefPairing/@PreferLevel — добавление перевозчиков в белый (значение Preferred) или черный (значение Unacceptable) список
  • VendorPrefPairing/VendorPref — элемент с информацией о включении перевозчика в белый или черный список. Для каждого перевозчика необходимо указать:
    • VendorPref/@Code — двухбуквенный код перевозчика
    • VendorPref/@Type — тип перевозчика:
      • значение Operating — оперирующий перевозчик
      • значение Marketing — маркетинговый перевозчик (вариант по умолчанию в случае отсутствия любого значения)

Копировать
<VendorPrefPairing Applicability="AllSegments" PreferLevel="Preferred">
  <VendorPref Code="XX" Type="Marketing"/>
  <VendorPref Code="XX" Type="Operating"/>
  <VendorPref Code="YY" Type="Operating"/>
  <VendorPref Code="ZZ" Type="Operating"/>
</VendorPrefPairing>

Копировать
<VendorPrefPairing PreferLevel="Unacceptable">
  <VendorPref Code="XX" Type="Marketing"/>
  <VendorPref Code="YY" Type="Operating"/>
</VendorPrefPairing>

Значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/ExcludeCallDirectCarriers/@Enabled позволяет не выдавать те варианты перелетов, которые невозможно забронировать в системе бронирования Sabre. Рекомендуется установить это значение у атрибута.

Черный и белый список альянсов для всего запрошенного маршрута

Белый список альянсов для всего запрошенного маршрута задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/IncludeAlliancePref. Для каждого альянса необходимо указать его код в атрибуте IncludeAlliancePref/@Code.

Черный список альянсов для всего запрошенного маршрута задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/ExcludeAlliancePref. Для каждого альянса необходимо указать его код в атрибуте ExcludeAlliancePref/@Code.

Белый список маркетинговых перевозчиков и альянсов для отдельного сегмента

Белый список перевозчиков для отдельного сегмента задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/IncludeVendorPref/@Code.

Белый список альянсов для отдельного сегмента задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/IncludeAlliancePref/@Code.

Белые списки альянсов и перевозчиков для отдельного сегмента не могут быть указаны одновременно с белым списком альянсов и перевозчиков для всего маршрута. Т.е. необходимо выбрать или белый список для отдельного сегмента или для всего маршрута.

Интерлайн

По умолчанию Sabre ищет варианты перелетов без учета наличия интерлайн соглашений между перевозчиками. Это означает, что перевозчики могут не разрешать оформлять найденные варианты перелетов на одном билете. Для того, чтобы при поиске перелетов происходила проверка на наличие интерлайн соглашения между перевозчиками, необходимо установить значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/@ValidInterlineTicket в запросе.

Для того, чтобы не получать в результатах поиска интерлайн перелеты (перелеты, содержащие несколько маркетинговых перевозчиков), необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/OnlineIndicator/@Ind.

Кодшер

Для того, чтобы исключить из результатов поиска варианты перелетов с кодшер рейсами (т.е. рейсами, у которых различаются маркетинговый и оперирующий перевозчик) необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/CodeShareIndicator/@ExcludeCodeshare. Если указать также значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/CodeShareIndicator/@ExcludeCodeshare/@KeepOnlines, то из результатов поиска будут исключены варианты перелетов с кодшер рейсами, кроме тех вариантов перелетов, у которых отсутствует интерлайн (т.е. маркетинговый перевозчик у всех рейсов совпадает).

Выбор валидирующего перевозчика

Обратите внимание на то, что указанные ниже параметры для управления выбором валидирующего перевозчика доступны только при включенной настройке Validating Carrier, Interline, and GSA!

В результатах поиска можно получить все варианты перелетов для выбранного валидирующего перевозчика. Для этого необходимо указать его код в качестве значения атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/ValidatingCarrier/@Code. Обратите внимание на то, что в этом случае могут быть получены такие варианты перелетов, у которых при поиске без данного параметра мог быть использован другой валидирующий перевозчик.

Черный список валидирующих перевозчиков задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/ValidatingCarrier/Preference. Для каждого перевозчика необходимо указать:

  • Preference/@Code — двухбуквенный код перевозчика
  • Preference/@Level — значение Unacceptable

Список приоритетных валидирующих перевозчиков задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/ValidatingCarrier/Preference. Для каждого перевозчика необходимо указать:

  • Preference/@Code — двухбуквенный код перевозчика
  • Preference/@Level — значение Preferred

Приоритетный валидирующий перевозчик будет выбран в том случае, если существует два или более валидирующих перевозчиков, которые предлагают одинаковую стоимость для одного и того же варианта перелета. Если для какого-либо варианта перелета перевозчик, указанный в списке приоритетных, не может быть валидирующим или он предлагает большую стоимость, то выбран будет другой валидирующий перевозчик.

Багаж

Нормы провоза багажа

Для получения информации о нормах провоза багажа в структурированном виде (максимальное количество мест багажа или максимальный вес багажа) необходимо указать значение A у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/Baggage/@RequestType.

Для получения дополнительной информации в текстовом виде (максимальный вес и размеры багажа) необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/Baggage/@Description.

Тарифы с багажом

Для поиска тарифов с багажом (как минимум одно бесплатное место провоза багажа) в запросе необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/Baggage/@FreePieceRequired. При поиске перелетов с расчетом стоимости по всем доступным брендам, в результатах поиска будут представлены только те брендированные тарифы, которые имеют как минимум одно бесплатное место провоза багажа.

Обратите внимание на то, что для вариантов перелетов, которые были получены в результатах при поиске тарифов с багажом и, которые не являются брендированными, требуется особый порядок выполнения расчета стоимости и бронирования. См. подробнее в разделах Создание бронирований в 1 шаг, Создание бронирований в 2 шага.

Брендированные тарифы

Информация о примененных брендированных тарифах

По умолчанию ответ на запрос не содержит информацию о примененных брендированных тарифах (код бренда, название бренда, код программы брендов и т.д.). Для того, чтобы получить эту информацию, необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelerInfoSummary/PriceRequestInformation/TPA_Extensions/BrandedFareIndicators/@SingleBrandedFare.

Расчет стоимости по всем доступным брендам

Для получения расчетов по всем доступным брендам для всех найденных вариантов перелетов необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelerInfoSummary/PriceRequestInformation/TPA_Extensions/BrandedFareIndicators/@MultipleBrandedFares.

Также дополнительно в элементе /OTA_AirLowFareSearchRQ/TravelerInfoSummary/PriceRequestInformation/TPA_Extensions/BrandedFareIndicators можно указать атрибуты:

  • /@UpsellLimit — максимальное количество предлагаемых дополнительных брендированных тарифов (по умолчанию — 12)
  • /@ParityMode — режим выбора брендов:
    • Itin — для всего перелета будет использован один и тот же бренд
    • Leg — для каждого плеча перелета могут быть использованы разные бренды (режим по умолчанию)
  • /@ItinParityBrandlessLeg — режим выбора брендов, если у атрибута /@ParityMode выбрано значение Itin, однако для части сегментов не предусмотрены брендированные тарифы. Возможные значения:
    • true — ответ может содержать варианты расчетов, при которых для части сегментов указан один бренд, а для других сегментов бренд не указан
    • false — ответ не может содержать варианты расчетов, при которых для части сегментов указан один бренд, а для других сегментов бренд не указан (режим по умолчанию)
  • /@ItinParityFallbackMode — режим выбора брендов, если у атрибута /@ParityMode выбрано значение Itin, однако отсутствует возможность использовать одинаковый бренд для всех сегментов в перелете. Возможные значения:
    • LegParity — для каждого плеча перелета могут быть использованы разные бренды
    • LowestSingle — расчет по самым дешевым тарифам без учета брендов (режим по умолчанию)
  • /@ParityModeForLowest — по умолчанию (когда данный атрибут не указан) при расчете стоимости по всем брендам самый дешевый вариант расчета может быть выполнен частично или полностью по тарифам, которые не являются брендированными. Чтобы этого избежать можно указать:
    • Itin — для всего перелета будет использован один и тот же бренд
    • Leg — для каждого плеча перелета могут быть использованы разные бренды

Обратите внимание на то, что использование возможности получения расчетов по всем доступным брендам требует активации для каждого PCC. Пожалуйста, обратитесь к вашему куратору в Sabre для уточнения деталей.

Обратите внимание на то, что в одном поисковом запросе невозможно одновременное получение расчетов по всем брендам и получение дополнительных расчетов стоимости по заданным критериям (см. ниже).

Список услуг у найденных брендированных тарифов

Для получения списка услуг у найденных брендированных тарифов необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelerInfoSummary/PriceRequestInformation/TPA_Extensions/BrandedFareIndicators/@ReturnBrandAncillaries. Эта опция может быть запрошена только при запросе информации о примененных брендированных тарифах (/@SingleBrandedFare) или при получении расчетов по всем доступным брендам (/@MultipleBrandedFares).

Подробнее см. в разделе Брендированные тарифы.

Черный и белый список брендов

Черный список брендов задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelerInfoSummary/PriceRequestInformation/TPA_Extensions/BrandedFareIndicators/BrandFilters/Brand (для всего маршрута) или /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/BrandFilters/Brand (для плеча). Для каждого бренда необходимо указать:

  • Preference/@Code — код бренда
  • Preference/@Level — значение Unacceptable

Белый список брендов задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelerInfoSummary/PriceRequestInformation/TPA_Extensions/BrandedFareIndicators/BrandFilters/Brand (для всего маршрута) или /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/BrandFilters/Brand (для плеча). Для каждого бренда необходимо указать:

  • Preference/@Code — код бренда
  • Preference/@Level — значение Preferred

Обратите внимание на то, что даже передав один или несколько кодов брендов в белом списке, в ответе расчет для этого плеча может быть выполнен по небрендированному тарифу. Для того, чтобы этого избежать, необходимо указать значение Unacceptable у атрибута /OTA_AirLowFareSearchRQ/TravelerInfoSummary/PriceRequestInformation/TPA_Extensions/BrandedFareIndicators/BrandFilters/NonBrandedFares/@PreferLevel (для всего маршрута) или /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/BrandFilters/NonBrandedFares/@PreferLevel (для плеча). Для того, чтобы расчет был выполнен только по небрендированным тарифам, необходимо указать значение Preferred у этого атрибута.

Дополнительные расчеты стоимости по заданным критериям

Обратите внимание на то, что в одном поисковом запросе невозможно одновременное получение дополнительных расчетов стоимости по заданным критериям и получение расчетов по всем брендам (см. выше).

Ответ Bargain Finder Max по умолчанию содержит расчет стоимости по самому дешевому доступному тарифу (или тарифам) для каждого найденного варианта перелета. Описанная ниже функциональность позволяет получить дополнительные расчеты стоимости для каждого найденного варианта перелета по указанным в запросе группам критериев. Таким образом, ответ на запрос к сервису Bargain Finder Max в этом случае может содержать несколько вариантов расчета стоимости одного и того же варианта перелета:

  • расчет стоимости по самому дешевому доступному тарифу (или тарифам)
  • дополнительные расчеты стоимости по тарифам, выбранным по заданным в запросе группам критериев

Каждая группа критериев задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters запроса. Всего один запрос может содержать до 10 групп критериев. Каждая группа критериев может содержать один или несколько критериев.

Ниже представлено описание доступных критериев.

Включение или исключение тарифов с ограничениями

Для исключения из расчета тарифов с ограничениями необходимо указать значение false у одного из атрибутов:

  • /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/ResTicketing/@Ind — исключение тарифов с ограничениями по срокам бронирования и оформления билетов
  • /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/MinMaxStay/@Ind — исключение тарифов с ограничениями по срокам минимального и максимального пребывания
  • /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/RefundPenalty/@Ind — исключение тарифов со штрафами за возврат

Для исключения любых тарифов с ограничениями необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/ExcludeRestricted/@Ind.

Количество и категории пассажиров

Различные категории пассажиров могут быть указаны в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/PassengerTypeQuantity. У каждого элемента нужно указать код категории пассажира (атрибут /@Code) и количество пассажиров данной категории (атрибут /@Quantity).

Обратите внимание на то, что общее количество пассажиров в одной группе критериев не должно превышать общее количество пассажиров в основном запросе.

Для того чтобы получать расчет только для указанных категорий пассажиров во всех тарифах в расчете (т.е. отключить смену категории пассажира в случае невозможности произвести расчет по указанной категории) необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/XOFares/@Ind.

Для того чтобы получить расчет для указанных категорий пассажиров хотя бы для одного тарифа в расчете необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/UsePassengerFares/@Ind.

Использование приватных или публичных тарифов

Для получения расчетов только по публичным или только по приватным тарифам необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/PublicFare/@Ind или /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/PrivateFare/@Ind, соответственно.

Дополнительно в качестве критериев можно указать один или несколько Account Code и Corporate ID в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/AccountCode и /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/CorporateID, соответственно. Сами коды указываются в атрибутах /@Code этих элементов.

По умолчанию даже с указанными Account Code или Corporate ID система может вернуть расчет по тарифу или тарифам, для расчета которого не применялись Account Code или Corporate ID, если этот тариф или тарифы дешевле, чем тарифы с Account Code или Corporate ID или, если тарифы с Account Code или Corporate ID отсутствуют или не применимы.

Однако, если указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/NegotiatedFaresOnly/@Ind, то в полученном расчете для всех тарифов будут использованы указанные Account Code или Corporate ID.

Если указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/UseNegotiatedFares/@Ind, то в полученном расчете как минимум для одного тарифа будут использованы указанные Account Code или Corporate ID.

Обмен и возврат

Получение информации об условиях обмена и возврата найденных вариантов перелета, а также установка требований к условиям обмена и возврата найденных вариантов производится аналогично тому, как описано в разделе "Обмен и возврат". Для дополнительного расчета все требования необходимо представить в элементе /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/VoluntaryChanges (по аналогии с /OTA_AirLowFareSearchRQ/TravelerInfoSummary/AirTravelerAvail/PassengerTypeQuantity/TPA_Extensions/VoluntaryChanges для основного запроса).

Выбор класса обслуживания

Класс обслуживания может быть указан в качестве значения атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/Cabin/@Type. Допустимые варианты кодов и названий классов обслуживания:

  • Economy или Y — экономический класс
  • PremiumEconomy или S — улучшенный экономический класс
  • Business или C — бизнес класс
  • PremiumBusiness или J — улучшенный бизнес класс
  • First или F — первый класс
  • PremiumFirst или P — улучшенный первый класс

Для отключения логики выбора класса обслуживания необходимо указать значение true у атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/JumpCabinLogic/@Disabled или атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/KeepSameCabin/@Enabled. Подробнее о том, как выбирается класс обслуживания и на что влияют указанные выше параметры см. Класс обслуживания.

Выбор класса бронирования

Черный и белый список классов бронирования задается в элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/ClassOfService так же, как и для основного запроса.

Выбор кода тарифа

Черный и белый список кодов тарифов задается в элементах /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/FareBasis так же, как и для основного запроса.

Параметры плеча

В запросе можно указать параметры для каждого из запрашиваемого плеч. Для этого необходимо добавить элемент /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/FlexibleFares/FareParameters/Leg и указать в нем в качестве значения атрибута /@Num номер плеча.

Доступные параметры для каждого плеча: Leg/Cabin — класс обслуживания (см. выше доступные значения) Leg/ClassOfService — класс бронирования (см. выше доступные значения) Leg/FareBasis — код тарифа (см. выше доступные значения)

Дополнительная информация

Дополнительная информация по функции Multiple Fares per Itinerary доступна в документации.

Разнообразие поисковой выдачи

По умолчанию варианты перелетов для каждого поискового запроса выбираются по их стоимости. Например, запросив 50 вариантов, вы получите 50 самых дешевых вариантов перелетов, отвечающих заданным требованиям. Однако, в некоторых случаях требуется найти такие варианты перелета, которые могут быть не самыми дешевыми, но отвечать дополнительным требованиям пассажира или агентства. Например:

  • удобное время вылета
  • низкое время в пути
  • повышенная комиссия перевозчика
  • и т.д.

Для этого в сервисе Bargain Finder Max предусмотрена возможность изменения разнообразия поисковой выдачи. Для этого предлагается разбить поисковую выдачу на две части (корзины):

  • корзина с самыми дешевыми перелетами
  • корзина с перелетами, отвечающими определенным заданным критериям

Размер первой корзины может быть задан:

  • в абсолютных числах (например, 150 вариантов из 200). Это число должно быть указано в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/LowFareBucket/@Options
  • в процентах (например, 75% вариантов из 200). Этот процент должен быть указан в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/LowFareBucket/@Options (вместе со знаком % на конце)
  • в процентах максимальной разницы в стоимости между самым дешевым и дорогим вариантом перелета (например, если указано значение 100% и самый дешевый найденный перелет стоит 10000 рублей, то в первой корзине будут только те варианты перелетов, которые стоят менее 20000 рублей). Этот процент должен быть указан в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/LowFareBucket/@FareCutOff (вместе со знаком % на конце)

Для составления второй корзины результатов требуется указать один или несколько критериев. Всего доступно 7 критериев. Для каждого критерия можно указать его вес (значимость), а также дополнительные параметры.

Для каждого варианта перелета рассчитывается специальный коэффициент, в зависимости от значений используемых критериев, после чего все варианты перелетов, которые не попадают в первую корзину, сортируются по величине коэффициента и выбираются во вторую корзину.

Формула для расчета коэффициента:

Стоимость × (Крит1Вес + Крит2Вес × Крит2Коэфф + Крит3Вес × Крит3Коэфф + Крит4Вес × Крит4Коэфф + Крит5Вес × Крит5Коэфф + Крит6Вес × Крит6Коэфф + Крит7Вес × Крит7Коэфф)

Где:

  • критерий 1 — стоимость
  • критерий 2 — время в пути
  • критерий 3 — выбор перевозчиков
  • критерий 4 — дубликаты
  • критерий 5 — комбинации рейсов
  • критерий 6 — время вылета и прилета
  • критерий 7 — количество пересадок

Для каждой критерия можно указать его вес (от 0 до 10), т.е. указать насколько данный критерий важен по сравнению с остальными. Для всех критериев кроме стоимости также рассчитывается специальный коэффициент, который позволяет сравнивать его с другими критериями и используется в формуле, указанной выше.

Стоимость

Данный критерия определяет насколько важна стоимость найденного перелета для попадания во вторую корзину.

Вес критерия указывается в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/@PriceWeight.

Время в пути

Данный критерий определяет насколько важно время в пути (включая время пересадок) для найденного перелета для попадания во вторую корзину.

Вес критерия указывается в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/TravelTime/@Weight.

Коэффициент для данного критерия рассчитывается по следующей формуле:

(Время в пути для данного перелета - Время в пути самого быстрого перелета) / Время в пути для данного перелета

Выбор перевозчиков

Данный критерий определяет насколько важно попадание вариантов определенного перевозчика во вторую корзину.

Для каждого перевозчика можно указать количество или процент желаемых вариантов (атрибут /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/Carrier/Override/@Options) и его код (атрибут /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/Carrier/Override/@Code).

Также можно указать количество или процент желаемых вариантов для тех перевозчиков, что не были перечислены, т.е. по умолчанию (атрибут /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/Carrier/Default/@Options).

В запросе в атрибуте /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/Carrier/@OnlineIndicator можно указать требуется ли использовать данный критерий только для вариантов перелета с одним маркетинговым перевозчиком (значение true) или также для интерлайн вариантов перелета.

Вес критерия указывается в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/Carrier/@Weight.

Коэффициент для данного критерия рассчитывается по следующей формуле:

(Количество вариантов перелета для перевозчика - Указанное количество вариантов для перевозчика) / Количество вариантов перелета для перевозчика

Дубликаты

Данный критерий позволяет избавиться от дубликатов (варианты перелетов с одинаковыми сегментами, продающиеся разными маркетинговыми перевозчиками) во второй корзине.

По умолчанию дубликатом считается только тот вариант перелета, в котором ни на одном из сегментов маркетинговый перевозчик не является оперирующим.

В запросе также можно указать коды тех маркетинговых перевозчиков, которые необходимо считать оригинальными вариантами и оставить во второй корзине (атрибут /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/OperatingDuplicate/PreferredCarrier/@Code).

Вес критерия указывается в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/OperatingDuplicate/@Weight.

Коэффициент для данного критерия определяется по следующему алгоритму:

  • 0, если вариант считается дубликатом
  • 1, если вариант не считается дубликатом

Комбинации рейсов

Данный критерий позволяет снизить число вариантов перелетов, у которых совпадают рейсы при перелете туда при разных рейсах при перелете обратно, во второй корзине.

В запросе можно указать сколько комбинаций с одинаковыми рейсами при перелете туда должно быть во второй корзине (атрибут /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/InboundOutboundPairing/@Duplicates).

Вес критерия указывается в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/InboundOutboundPairing/@Weight.

Коэффициент для данного критерия рассчитывается по следующей формуле:

(Количество различных комбинаций с таким вылетом туда - Указанное количество комбинаций) / Количество различных комбинаций с таким вылетом туда

Время вылета и прилета

Данный критерий позволяет определить временные промежутки в течение дня получения вариантов перелета с вылетом или посадкой в эти промежутки во второй корзине.

В запросе можно указать одно или несколько условий по попаданию вариантов перелетов в нужный временной промежуток (элементы /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/TimeOfDay/Distribution). Для каждого условия необходимо указать один из следующих аргументов:

  • /@Direction — направление перелета, для которого действует условие. Возможные варианты:
    • Outbound — перелет туда
    • Inbound — перелет обратно
  • /@Leg — номер плеча в запросе, для которого действует условие

Дополнительно можно указать:

  • /@Endpoint — выбор применимости условия. Возможные варианты:
    • Departure — взлет
    • Arrival — посадка

Каждое условие может содержать до 4 временных промежутков (элементы /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/TimeOfDay/Distribution/Range) со следующими обязательными атрибутами:

  • Begin — начало временного промежутка
  • End — окончание временного промежутка
  • Options — количество или процент желаемых вариантов в указанный временной промежуток

Коэффициент для данного критерия рассчитывается по следующей формуле:

Количество различных плеч для вылета туда за данный временной промежуток * (1 - Указанный процент) / Общее количество различных плеч для вылета туда + Количество различных плеч для вылета обратно за данный временной промежуток * (1 - Указанный процент) / Общее количество различных плеч для вылета обратно

Количество пересадок

Данный критерий определяет насколько важно количество пересадок в найденном перелете для попадания во вторую корзину.

Вес критерия указывается в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/DiversityControl/Dimensions/StopsNumber/@Weight.

Коэффициент для данного критерия рассчитывается по следующей формуле:

(Количество прямых сегментов × 0 + Количество сегментов с технической посадкой × 0,5 + Количество сегментов с пересадками × 1) / Общее количество сегментов

Например, коэффициент для перелета из Уфы в Лондон и обратно с пересадкой в Москве составит: (4 × 1)/4 = 1. Коэффициент для перелета из Москвы в Мельбурн с технической посадкой в Куала-Лумпуре: (2 × 0,5)/2 = 0,5.

Дополнительные услуги

Атрибут /OTA_AirLowFareSearchRQ/TravelPreferences/AncillaryFees/@Enable со значением равным true позволяет запросить дополнительную информацию о наличии у перевозчика дополнительных услуг и их стоимости.

При необходимости можно ограничить список возвращаемых дополнительных услуг, указав их коды в качестве значений атрибута /@Code последовательно расположенных элементов /OTA_AirLowFareSearchRQ/TravelPreferences/AncillaryFees/AncillaryFeeGroup.

Доступные категории дополнительных услуг:

  • BG — багаж
  • GT — наземные перевозки
  • IE — развлечения на борту
  • LG — доступ в залы ожидания
  • MD — медицинские услуги
  • PT — перевозка животных
  • SA — бронирование мест в салоне
  • ML — питание и напитки
  • UN — несопровождаемые дети

Подробнее о дополнительных услугах см. в Дополнительные услуги.

Обмен и возврат билетов

Атрибут /OTA_AirLowFareSearchRQ/TravelerInfoSummary/AirTravelerAvail/PassengerTypeQuantity/TPA_Extensions/VoluntaryChanges/@Match со значением равным Info позволяет получить в результатах поиска информацию о возможности совершения обмена и возврата до и после вылета, а также величину штрафа за обмен и возврат.

В запросе можно указать требования к условиям обмена и возврата билетов для найденных перелетов. Для этого необходимо установить одно из двух значений атрибута /OTA_AirLowFareSearchRQ/TravelerInfoSummary/AirTravelerAvail/PassengerTypeQuantity/TPA_Extensions/VoluntaryChanges/@Match:

  • All — найденные варианты должны отвечать всем указанным требованиям
  • Any — найденные варианты должны отвечать хотя бы одному из указанных требований

Требования к условиям задаются в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelerInfoSummary/AirTravelerAvail/PassengerTypeQuantity/TPA_Extensions/VoluntaryChanges/Penalty со следующими опциональными атрибутами:

  • /@Type — тип операции. Возможные варианты:
    • Refund — возврат
    • After — обмен
  • /@Exclude — исключить тарифы, которые отвечают указанным требованиям. Возможные варианты:
    • true — исключить тарифы
    • false — не исключать тарифы (по умолчанию)
  • /@Application — применимость штрафа. Возможные варианты:
    • Before — штраф за обмен или возврат до вылета
    • After — штраф за обмен или возврат после вылета
  • /@Amount — максимальная величина штрафа
  • /@CurrencyCode — код валюты штрафа, например RUB

Всего в запросе может быть до двух требований: одно для обмена и одно для возврата.

Примеры:

Копировать
<VoluntaryChanges Match="Info"/>

Копировать
<VoluntaryChanges Match="All">
  <Penalty Type="Refund"/>
</VoluntaryChanges>

Копировать
<VoluntaryChanges Match="All">
  <Penalty Type="Exchange"/>
  <Penalty Type="Refund"/>
</VoluntaryChanges>

Копировать
<VoluntaryChanges Match="Any">
  <Penalty Type="Exchange"/>
  <Penalty Type="Refund"/>
</VoluntaryChanges>

Копировать
<VoluntaryChanges Match="All">
  <Penalty Type="Exchange" Amount="1000" CurrencyCode="RUB"/>
  <Penalty Type="Refund" Amount="1000" CurrencyCode="RUB"/>
</VoluntaryChanges>

Копировать
<VoluntaryChanges Match="All">
  <Penalty Type="Refund" Exclude="true"/>
</VoluntaryChanges>

Публичные и приватные тарифы

По умолчанию BargainFinderMaxRQ предлагает варианты перелетов с расчетом, как по публичным, так и по приватным тарифам. Однако, указав значение атрибута /OTA_AirLowFareSearchRQ/TravelerInfoSummary/PriceRequestInformation/TPA_Extensions/PublicFare/@Ind или /OTA_AirLowFareSearchRQ/TravelerInfoSummary/PriceRequestInformation/TPA_Extensions/PrivateFare/@Ind равное true можно запросить расчет только по публичным или приватным тарифам, соответственно.

Список кодов корпоративных скидок (Corporate ID) задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelerInfoSummary/PriceRequestInformation/NegotiatedFareCode. Для каждого кода необходимо указать его значение в атрибуте NegotiatedFareCode/@Code. Дополнительно можно задать список перевозчиков, для которых действует данный код. Данный список задается в последовательно расположенных элементах NegotiatedFareCode/Supplier. Для каждого элемента необходимо задать код перевозчика в атрибуте NegotiatedFareCode/Supplier/@Code.

Список аккаунт кодов (Account Code) задается в последовательно расположенных элементах /OTA_AirLowFareSearchRQ/TravelerInfoSummary/PriceRequestInformation/AccountCode. Для каждого аккаунт кода необходимо указать его значение в атрибуте AccountCode/@Code.

Оформление на нескольких билетах

Обратите внимание на то, что для работы данной опции требуется включение настройки Multi-Ticket Shopping and Pricing (Поиск перелетов с оформлением на нескольких билетах). Опция будет активирована в течение 24 часов.

По умолчанию в результатах поискового присутствуют предложения, которые могут быть оформлены на одном билетом, при использовании данной опции запрашиваемый маршрут туда-обратно (Round Trip) будет разбит на два маршрута туда (One Way) и поиск будет также производиться по ним. Это позволяет сократить количество отправляемых запросов и (или) получать более дешевые предложения в результатах поиска.

Доступно два режима работа данной опции, каждый из которых имеет собственный код, который должен быть указан в атрибуте /OTA_AirLowFareSearchRQ/TPA_Extensions/MultiTicket/@DisplayPolicy:

  • SOW (Show One Ways) — в результатах поиска одновременно будет присутствовать три массива результатов: варианты перелетов RT и два массива вариантов перелетов OW туда и обратно. Фактически данный вариант аналогичен отправки трех поисковых запросов: 1xRT, 2xOW.
  • SCHS (Show CHeapest Solutions) — варианты перелетов отсортированы по стоимости вне зависимости от того, из чего они состоят: 1xRT или 2xOW.

Дополнительно в запросе можно установить максимальное количество возвращаемых вариантов перелетов с оформлением на разных билетах:

  • /OTA_AirLowFareSearchRQ/TPA_Extensions/MultiTicket/@RequestedOneWays — для всего маршрута
  • /OTA_AirLowFareSearchRQ/OriginDestinationInformation/TPA_Extensions/MaxOneWayOptions/@Value — для каждого плеча по отдельности

Варианты перелетов, которые должны быть оформлены на двух билетах, рекомендуется оформлять в разных бронированиях. В этом случае сценарии бронирования, оформления билетов и другие рекомендуется выполнять параллельно в разных сессиях. Сами сценарии работы с бронированиями не меняются.

Дополнительные прямые перелеты

В поисковом запросе можно указать дополнительные прямые перелеты, которые будут добавлены к запрошенным вариантам перелета. Количество прямых перелетов может быть задано как в абсолютных числах (атрибут /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/DiversityParameters/@AdditionalNonStopsNumber), так и в процентах от общего числа вариантов (атрибут /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/DiversityParameters/@AdditionalNonStopsPercentage). Общее количество таких вариантов не может превышать 100.

Контекст запроса

Для улучшения качества поиска и ускорения выполнения запросов рекомендуется указывать контекст текущего поискового запроса при помощи контекстных тегов. Контекстные теги — это заранее определенные текстовые значения, которые указываются в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/IntelliSellTransaction/ServiceTag/@Name.

На данный момент предлагается использовать 4 контекстных тега:

  • META — поисковые запросы, инициированные метапоисковиками
  • MOBILE — поисковые запросы, выполненные с мобильных устройств (через приложение или мобильную версию сайта)
  • OTHER_ROBOT — автоматические поисковые запросы, например для получения кэша

Для остальных запросов контекст запроса указывать не нужно.

Air Shopping Rules Manager

Air Shopping Rules Manager — это бесплатный продукт Sabre, который предоставляет возможность устанавливать различные параметры поисковых запросов через веб-интерфейс. Один или несколько параметров запроса могут объединены через Air Shopping Rules Manager в правила (Traveler Personas). Для того чтобы использовать это правило при отправке запросов, необходимо указать код правила в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/IntelliSellTransaction/TravelerPersona/@Name.

Подробнее о продукте можно прочитать в документации.

PCC

Запрос к сервису BargainFinderMaxRQ должен содержать элемент /OTA_AirLowFareSearchRQ/POS в корневом элементе:

Копировать
<POS>
  <Source PseudoCityCode="Ваш PCC">
    <RequestorID ID="1" Type="1">
      <CompanyName Code="TN"/>
    </RequestorID>
  </Source>
</POS>

В атрибуте /OTA_AirLowFareSearchRQ/POS/Source/@PseudoCityCode необходимо указать PCC, из которого производится запрос. Остальные атрибуты должны быть заполнены как в примере выше.

Сервис Bargain Finder Max позволяет искать варианты перелетов в нескольких PCC одновременно. Это может быть актуально для получения приватных тарифов, которые зафайлированы в разных PCC, или для получения вариантов перелетов, которые доступны не во всех странах.

В случае использования этой опции один PCC будет основным и должен быть задан в качестве значения атрибута /OTA_AirLowFareSearchRQ/POS/Source/@PseudoCityCode (см. выше). Для каждого дополнительного PCC (всего не более 4) должен быть создан элемент /OTA_AirLowFareSearchRQ/TPA_Extensions/AlternatePCC, у которого в качестве значения атрибута /@PseudoCityCode указан PCC.

Подробнее о поиске в нескольких PCC см. в документации.

Обратите внимание на то, что использование данной опции требует активации. Пожалуйста, обратитесь к вашему куратору в Sabre для уточнения деталей.

Количество вариантов перелетов

Тип запроса (количество запрашиваемых вариантов перелетов) должен быть указан в качестве значения атрибута /OTA_AirLowFareSearchRQ/TPA_Extensions/IntelliSellTransaction/RequestType/@Name.

Допустимыми значениями являются:

  • 50ITINS — 50 вариантов перелетов
  • 100ITINS — 100 вариантов перелетов
  • 200ITINS — 200 вариантов перелетов

Дополнительное ограничение на количество возвращаемых вариантов перелетов можно установить в качестве значения атрибута /OTA_AirLowFareSearchRQ/TravelPreferences/TPA_Extensions/NumTrips/@Number.

Вид ответа

У сервиса BargainFinderMaxRQ существует два основных вида представления ответов, код которого должен быть указан в атрибуте /OTA_AirLowFareSearchRQ/@ResponseType запроса:

  • OTA — стандартный вид ответа, в котором вся информация представлена в иерархическом виде. Ответ содержит список элементов, каждый из которых содержит информацию о предложенной опции, например, информацию о перелетах, расчет стоимости и т.д. Эти элементы, в свою очередь, могут содержать другие элементы, например, расчет стоимости содержит информацию о таксах (величина, код, название)
  • GIR — группированный или нормализованный вид ответа. Ответ содержит информацию отдельно о рейсах, расчетах стоимости, таксах и т.д. Связность между элементами достигается за счет использования идентификаторов элементов

Примеры

Копировать
<OTA_AirLowFareSearchRQ ResponseType="OTA" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true"/>
  <TravelerInfoSummary>
    <SeatsRequested>1</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="1"/>
    </AirTravelerAvail>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<OTA_AirLowFareSearchRS AvailableItinCount="0" BrandedOneWayItinCount="0" DepartedItinCount="0" PricedItinCount="200" SimpleOneWayItinCount="0" SoldOutItinCount="0" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Success/>
  <Warnings>
    <Warning Code="TRANSACTIONID" MessageClass="I" ShortText="4089328911275666491" Type="WORKERTHREAD"/>
    <Warning Code="ASE032LPSPIL690.IDM.SGDCPROD.SABRE.COM" MessageClass="I" ShortText="27036" Type="SERVER"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="15936" Type="DRE"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="24467" Type="DEFAULT"/>
  </Warnings>
  <PricedItineraries>
    <PricedItinerary SequenceNumber="1">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="267"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="135">
            <FlightSegment ArrivalDateTime="2020-09-08T21:45:00" DepartureDateTime="2020-09-08T19:30:00" ElapsedTime="135" FlightNumber="268" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="268"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="8200" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6000" CurrencyCode="RUB"/>
              <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8200" CurrencyCode="RUB"/>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="4"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="6"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="5322.55"/>
      </TPA_Extensions>
    </PricedItinerary>
    <PricedItinerary SequenceNumber="2">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="267"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-08T07:20:00" DepartureDateTime="2020-09-08T05:00:00" ElapsedTime="140" FlightNumber="580" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="580"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="8200" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6000" CurrencyCode="RUB"/>
              <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8200" CurrencyCode="RUB"/>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="4"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="8"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="5447.14"/>
      </TPA_Extensions>
    </PricedItinerary>
    <!--Другие варианты перелетов-->
  </PricedItineraries>
</OTA_AirLowFareSearchRS>


Копировать
<OTA_AirLowFareSearchRQ xmlns="http://www.opentravel.org/OTA/2003/05" ResponseType="GIR" Version="5.2.0">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true"/>
  <TravelerInfoSummary>
    <SeatsRequested>1</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="1"/>
    </AirTravelerAvail>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<GroupedItineraryResponse Version="5.2.0" xmlns="http://webservices.sabre.com/wsdl/sabreXML1.0.00/shopping/GroupedItineraryResponse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Message Code="TRANSACTIONID" Severity="Info" Text="5135602928937105698" Type="WORKERTHREAD"/>
  <Message Code="ASE032LPSPIL87B.IDM.SGDCPROD.SABRE.COM" Severity="Info" Text="27042" Type="SERVER"/>
  <Message Code="RULEID" Severity="Info" Text="15936" Type="DRE"/>
  <Message Code="RULEID" Severity="Info" Text="24467" Type="DEFAULT"/>
  <Statistics Itineraries="188"/>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="1" Stops="0" TotalMilesFlown="847">
    <Departure Airport="AER" City="AER" Country="RU" Time="04:25:00+03:00"/>
    <Arrival Airport="VKO" City="MOW" Country="RU" Time="06:40:00+03:00"/>
    <Carrier Disclosure="DP" Marketing="H1" MarketingFlightNumber="1435" Operating="H1" OperatingFlightNumber="1435">
      <Equipment Code="737" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="2" Stops="0" TotalMilesFlown="873">
    <Departure Airport="AER" City="AER" Country="RU" Time="17:45:00+03:00"/>
    <Arrival Airport="SVO" City="MOW" Country="RU" Terminal="B" Time="20:10:00+03:00"/>
    <Carrier Marketing="SU" MarketingFlightNumber="1125" Operating="SU" OperatingFlightNumber="1125">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="3" Stops="0" TotalMilesFlown="831">
    <Departure Airport="DME" City="MOW" Country="RU" Time="20:00:00+03:00"/>
    <Arrival Airport="AER" City="AER" Country="RU" Time="22:25:00+03:00"/>
    <Carrier Alliances="OW " Marketing="S7" MarketingFlightNumber="2049" Operating="S7" OperatingFlightNumber="2049">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc Frequency="SMTWTFS" ID="4" Stops="0" TotalMilesFlown="116">
    <Departure Airport="AER" City="AER" Country="RU" Time="20:25:00+03:00"/>
    <Arrival Airport="KRR" City="KRR" Country="RU" Time="21:20:00+03:00"/>
    <Carrier Marketing="UT" MarketingFlightNumber="378" Operating="UT" OperatingFlightNumber="378">
      <Equipment Code="AT7" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc Frequency="SMTWTFS" ID="5" Stops="0" TotalMilesFlown="116">
    <Departure Airport="AER" City="AER" Country="RU" Time="16:20:00+03:00"/>
    <Arrival Airport="KRR" City="KRR" Country="RU" Time="17:10:00+03:00"/>
    <Carrier Marketing="UT" MarketingFlightNumber="298" Operating="UT" OperatingFlightNumber="298">
      <Equipment Code="AT7" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <!--Другие рейсы-->
  <TaxDesc Amount="190" Code="YQI" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED MISC" ID="1" PublishedAmount="190" PublishedCurrency="RUB" Station="SVO"/>
  <TaxDesc Amount="120" Code="RI4" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC ARRIVAL" ID="2" PublishedAmount="120" PublishedCurrency="RUB" Station="SVO"/>
  <TaxDesc Amount="2700" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="3" PublishedAmount="2700" PublishedCurrency="RUB" Station="AER"/>
  <TaxDesc Amount="1300" Code="YRF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="4" PublishedAmount="1300" PublishedCurrency="RUB" Station="DME"/>
  <TaxDesc Amount="2700" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="5" PublishedAmount="2700" PublishedCurrency="RUB" Station="SVO"/>
  <!--Другие таксы-->
  <TaxSummaryDesc Amount="2900" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="1" PublishedAmount="500" PublishedCurrency="RUB" Station="VKO"/>
  <TaxSummaryDesc Amount="3400" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="2" PublishedAmount="25.00" PublishedCurrency="EUR" Station="VKO"/>
  <TaxSummaryDesc Amount="5400" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="3" PublishedAmount="2700" PublishedCurrency="RUB" Station="SVO"/>
  <TaxSummaryDesc Amount="440" Code="RI3" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC DEPARTURE" ID="4" PublishedAmount="100" PublishedCurrency="RUB" Station="DME"/>
  <TaxSummaryDesc Amount="884" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="5" PublishedAmount="6.50" PublishedCurrency="EUR" Station="DME"/>
  <!--Другие таксы-->
  <FareComponentDesc ApplicablePricingCategories="4 5 10 15 16 18" Direction="EH" Directionality="TO" FareAmount="6100" FareBasisCode="SBSRT" FareCurrency="RUB" FarePassengerType="ADT" FareRule="SBSC" FareTariff="304" FareType="XAT" FareTypeBitmap="00" GoverningCarrier="S7" ID="1" NotValidAfter="2020-09-08" NotValidBefore="2020-09-08" PublishedFareAmount="12200" VendorCode="ATP">
    <Segment/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18" Direction="EH" Directionality="FROM" FareAmount="900" FareBasisCode="HLTRT" FareCurrency="RUB" FarePassengerType="ADT" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="00" GoverningCarrier="UT" ID="2" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="1800" VendorCode="ATP">
    <Segment Stopover="true">
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="4 5 7 9 10 15 16 18" Direction="EH" Directionality="FROM" FareAmount="3600" FareBasisCode="UOWDP" FareCurrency="RUB" FarePassengerType="ADT" FareRule="H1DP" FareTariff="304" FareType="SIP" FareTypeBitmap="00" GoverningCarrier="H1" ID="3" NotValidAfter="2021-09-01" PublishedFareAmount="3600" VendorCode="ATP">
    <Segment Stopover="true"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18" Direction="EH" Directionality="FROM" FareAmount="2600" FareBasisCode="HLTRT" FareCurrency="RUB" FarePassengerType="ADT" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="00" GoverningCarrier="UT" ID="4" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="5200" VendorCode="ATP">
    <Segment Stopover="true">
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18" Direction="EH" Directionality="TO" FareAmount="2600" FareBasisCode="HLTRT" FareCurrency="RUB" FarePassengerType="ADT" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="00" GoverningCarrier="UT" ID="5" NotValidAfter="2020-09-09" NotValidBefore="2020-09-09" PublishedFareAmount="5200" VendorCode="ATP">
    <Segment>
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
  </FareComponentDesc>
  <!--Другие компоненты тарифов-->
  <ValidatingCarrierDesc ID="1" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="HR"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="2" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="R3"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="3" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="S7"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="4" NewVcxProcess="true" SettlementMethod="TCH">
    <Default Code="UT"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="5" NewVcxProcess="true" SettlementMethod="TCH">
    <Default Code="R3"/>
  </ValidatingCarrierDesc>
  <!--Другие валидирующие перевозчики-->
  <BaggageAllowanceDesc ID="1" Pieces="0"/>
  <BaggageAllowanceDesc ID="2" Pieces="0"/>
  <BaggageAllowanceDesc ID="3" Pieces="0"/>
  <BaggageAllowanceDesc ID="4" Pieces="0"/>
  <BaggageAllowanceDesc ID="5" Pieces="0"/>
  <!--Другие нормы провоза багажа-->
  <LegDesc ID="1">
    <Schedule Ref="45"/>
  </LegDesc>
  <LegDesc ID="2">
    <Schedule Ref="46"/>
  </LegDesc>
  <LegDesc ID="3">
    <Schedule Ref="43"/>
  </LegDesc>
  <LegDesc ID="4">
    <Schedule Ref="48"/>
  </LegDesc>
  <LegDesc ID="5">
    <Schedule Ref="47"/>
  </LegDesc>
  <!--Другие плечи-->
  <ItineraryGroup>
    <GroupDescription>
      <LegDescription ArrivalLocation="AER" DepartureDate="2020-09-01" DepartureLocation="DME"/>
      <LegDescription ArrivalLocation="DME" DepartureDate="2020-09-08" DepartureLocation="AER"/>
    </GroupDescription>
    <Itinerary ID="1" PricingSource="ADVJR1">
      <Leg Ref="13"/>
      <Leg Ref="37"/>
      <PricingInformation PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="Y7 Y7" LastTicketDate="2020-01-23" VITA="true" ValidatingCarrierCode="HR">
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="ADT">
            <FareComponent Ref="16">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="21">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="24"/>
            <Tax Ref="9"/>
            <Tax Ref="26"/>
            <Tax Ref="20"/>
            <Tax Ref="19"/>
            <Tax Ref="7"/>
            <TaxSummary Ref="12"/>
            <TaxSummary Ref="4"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="9600" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="9600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="9600" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11400" TotalTaxes="1800"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="2"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="2"/>
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare BaseFareAmount="9600" BaseFareCurrency="RUB" ConstructionAmount="9600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="9600" EquivalentCurrency="RUB" TotalPrice="11400" TotalTaxes="1800"/>
          <ValidatingCarrier Ref="1"/>
        </Fare>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="4862.812"/>
    </Itinerary>
    <Itinerary ID="2" PricingSource="ADVJR1">
      <Leg Ref="41"/>
      <Leg Ref="12"/>
      <PricingInformation PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="S7 S7" LastTicketDate="2020-01-24" VITA="true" ValidatingCarrierCode="S7">
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="ADT">
            <FareComponent Ref="14">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
            </FareComponent>
            <FareComponent Ref="1">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
            </FareComponent>
            <Tax Ref="27"/>
            <Tax Ref="12"/>
            <Tax Ref="4"/>
            <Tax Ref="21"/>
            <Tax Ref="26"/>
            <Tax Ref="20"/>
            <Tax Ref="19"/>
            <Tax Ref="7"/>
            <TaxSummary Ref="5"/>
            <TaxSummary Ref="6"/>
            <TaxSummary Ref="4"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="10000" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="10000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="10000" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="13924" TotalTaxes="3924"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="4"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="4"/>
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare BaseFareAmount="10000" BaseFareCurrency="RUB" ConstructionAmount="10000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="10000" EquivalentCurrency="RUB" TotalPrice="13924" TotalTaxes="3924"/>
          <ValidatingCarrier Ref="3"/>
          <ValidatingCarrier Ref="10"/>
        </Fare>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="9002.586"/>
    </Itinerary>
    <!--Другие варианты перелетов-->
  </ItineraryGroup>
  <!--Другие маршруты-->
</GroupedItineraryResponse>


Копировать
<OTA_AirLowFareSearchRQ ResponseType="OTA" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true">
    <CabinPref Cabin="Economy" PreferLevel="Preferred"/>
    <TPA_Extensions>
      <LongConnectTime Enable="true"/>
      <LongConnectPoints Max="3" Min="1"/>
      <KeepSameCabin Enabled="true"/>
      <ExcludeCallDirectCarriers Enabled="true"/>
      <DiversityParameters AdditionalNonStopsPercentage="100"/>
    </TPA_Extensions>
    <AncillaryFees Enable="true">
      <AncillaryFeeGroup Code="BG"/>
    </AncillaryFees>
    <Baggage Description="true" RequestType="A"/>
  </TravelPreferences>
  <TravelerInfoSummary>
    <SeatsRequested>3</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="2">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="CNN" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="INF" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
    </AirTravelerAvail>
    <PriceRequestInformation>
      <TPA_Extensions>
        <BrandedFareIndicators ReturnBrandAncillaries="true" SingleBrandedFare="true"/>
      </TPA_Extensions>
    </PriceRequestInformation>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<OTA_AirLowFareSearchRS AvailableItinCount="0" BrandedOneWayItinCount="0" DepartedItinCount="0" PricedItinCount="295" SimpleOneWayItinCount="0" SoldOutItinCount="0" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Success/>
  <Warnings>
    <Warning Code="TRANSACTIONID" MessageClass="I" ShortText="5139881708313453221" Type="WORKERTHREAD"/>
    <Warning Code="ASE002LPSPIL57B.IDM.SGDCPROD.SABRE.COM" MessageClass="I" ShortText="27042" Type="SERVER"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="15936" Type="DRE"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="24467" Type="DEFAULT"/>
  </Warnings>
  <BrandFeatures>
    <BrandFeature Application="F" CommercialName="BASIC SEAT" Id="1" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="C" CommercialName="BASIC SEAT" Id="2" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="C" CommercialName="SEAT SELECTION DURING CHECK IN" Id="3" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="F" CommercialName="SEAT SELECTION DURING CHECK IN" Id="4" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="D" CommercialName="REFUNDABLE TICKET" Id="5" ServiceGroup="BF" ServiceType="Z" SubCode="056" Vendor="ATP"/>
    <!--Другие услуги-->
  </BrandFeatures>
  <PricedItineraries>
    <PricedItinerary SequenceNumber="1">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="267"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-08T07:20:00" DepartureDateTime="2020-09-08T05:00:00" ElapsedTime="140" FlightNumber="580" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="580"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="23300" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="2"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6000" CurrencyCode="RUB"/>
              <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8200" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="CNN" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="4700" CurrencyCode="RUB"/>
              <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="6900" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="INF" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="0" CurrencyCode="RUB"/>
              <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <TotalFare Amount="0" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="4"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="8"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <AncillaryFeeGroups>
            <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
            </AncillaryFeeGroup>
          </AncillaryFeeGroups>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="15477.9"/>
      </TPA_Extensions>
    </PricedItinerary>
    <PricedItinerary SequenceNumber="2">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="267"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="135">
            <FlightSegment ArrivalDateTime="2020-09-08T21:45:00" DepartureDateTime="2020-09-08T19:30:00" ElapsedTime="135" FlightNumber="268" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="268"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="23300" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="2"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6000" CurrencyCode="RUB"/>
              <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8200" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="CNN" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="4700" CurrencyCode="RUB"/>
              <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="6900" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="INF" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="0" CurrencyCode="RUB"/>
              <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <TotalFare Amount="0" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="18"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="50"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="48"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="55"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="64"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="4"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="6"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <AncillaryFeeGroups>
            <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
            </AncillaryFeeGroup>
          </AncillaryFeeGroups>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="15123.8"/>
      </TPA_Extensions>
    </PricedItinerary>
    <!--Другие варианты перелетов-->
  </PricedItineraries>
</OTA_AirLowFareSearchRS>


Копировать
<OTA_AirLowFareSearchRQ ResponseType="GIR" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true">
    <CabinPref Cabin="Economy" PreferLevel="Preferred"/>
    <TPA_Extensions>
      <LongConnectTime Enable="true"/>
      <LongConnectPoints Max="3" Min="1"/>
      <KeepSameCabin Enabled="true"/>
      <ExcludeCallDirectCarriers Enabled="true"/>
      <DiversityParameters AdditionalNonStopsPercentage="100"/>
    </TPA_Extensions>
    <AncillaryFees Enable="true">
      <AncillaryFeeGroup Code="BG"/>
    </AncillaryFees>
    <Baggage Description="true" RequestType="A"/>
  </TravelPreferences>
  <TravelerInfoSummary>
    <SeatsRequested>3</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="2">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="CNN" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="INF" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
    </AirTravelerAvail>
    <PriceRequestInformation>
      <TPA_Extensions>
        <BrandedFareIndicators ReturnBrandAncillaries="true" SingleBrandedFare="true"/>
      </TPA_Extensions>
    </PriceRequestInformation>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<GroupedItineraryResponse Version="5.2.0" xmlns="http://webservices.sabre.com/wsdl/sabreXML1.0.00/shopping/GroupedItineraryResponse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Message Code="TRANSACTIONID" Severity="Info" Text="4082613201572440215" Type="WORKERTHREAD"/>
  <Message Code="ASE002LPSPIL740.IDM.SGDCPROD.SABRE.COM" Severity="Info" Text="27038" Type="SERVER"/>
  <Message Code="RULEID" Severity="Info" Text="15936" Type="DRE"/>
  <Message Code="RULEID" Severity="Info" Text="24467" Type="DEFAULT"/>
  <Statistics Itineraries="295"/>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="1" Stops="0" TotalMilesFlown="847">
    <Departure Airport="AER" City="AER" Country="RU" Time="04:25:00+03:00"/>
    <Arrival Airport="VKO" City="MOW" Country="RU" Time="06:40:00+03:00"/>
    <Carrier Disclosure="DP" Marketing="H1" MarketingFlightNumber="1435" Operating="H1" OperatingFlightNumber="1435">
      <Equipment Code="737" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="2" Stops="0" TotalMilesFlown="734">
    <Departure Airport="VKO" City="MOW" Country="RU" Terminal="A" Time="10:50:00+03:00"/>
    <Arrival Airport="KRR" City="KRR" Country="RU" Time="13:00:00+03:00"/>
    <Carrier Marketing="UT" MarketingFlightNumber="575" Operating="UT" OperatingFlightNumber="575">
      <Equipment Code="738" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="3" Stops="0" TotalMilesFlown="873">
    <Departure Airport="AER" City="AER" Country="RU" Time="17:45:00+03:00"/>
    <Arrival Airport="SVO" City="MOW" Country="RU" Terminal="B" Time="20:10:00+03:00"/>
    <Carrier Marketing="SU" MarketingFlightNumber="1125" Operating="SU" OperatingFlightNumber="1125">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="4" Stops="0" TotalMilesFlown="831">
    <Departure Airport="DME" City="MOW" Country="RU" Time="20:00:00+03:00"/>
    <Arrival Airport="AER" City="AER" Country="RU" Time="22:25:00+03:00"/>
    <Carrier Alliances="OW " Marketing="S7" MarketingFlightNumber="2049" Operating="S7" OperatingFlightNumber="2049">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc Frequency="SMTWTFS" ID="5" Stops="0" TotalMilesFlown="116">
    <Departure Airport="AER" City="AER" Country="RU" Time="20:25:00+03:00"/>
    <Arrival Airport="KRR" City="KRR" Country="RU" Time="21:20:00+03:00"/>
    <Carrier Marketing="UT" MarketingFlightNumber="378" Operating="UT" OperatingFlightNumber="378">
      <Equipment Code="AT7" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <!--Другие рейсы-->
  <TaxDesc Amount="190" Code="YQI" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED MISC" ID="1" PublishedAmount="190" PublishedCurrency="RUB" Station="SVO"/>
  <TaxDesc Amount="50" Code="RI4" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC ARRIVAL" ID="2" PublishedAmount="50" PublishedCurrency="RUB" Station="AER"/>
  <TaxDesc Amount="120" Code="RI4" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC ARRIVAL" ID="3" PublishedAmount="120" PublishedCurrency="RUB" Station="SVO"/>
  <TaxDesc Amount="2700" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="4" PublishedAmount="2700" PublishedCurrency="RUB" Station="AER"/>
  <TaxDesc Amount="1300" Code="YRF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="5" PublishedAmount="1300" PublishedCurrency="RUB" Station="DME"/>
  <!--Другие таксы-->
  <TaxSummaryDesc Amount="304" Code="RI3" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC DEPARTURE" ID="1" PublishedAmount="92" PublishedCurrency="RUB" Station="SVO"/>
  <TaxSummaryDesc Amount="2900" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="2" PublishedAmount="500" PublishedCurrency="RUB" Station="VKO"/>
  <TaxSummaryDesc Amount="3400" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="3" PublishedAmount="25.00" PublishedCurrency="EUR" Station="VKO"/>
  <TaxSummaryDesc Amount="262" Code="RI3" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC DEPARTURE" ID="4" PublishedAmount="50" PublishedCurrency="RUB" Station="DME"/>
  <TaxSummaryDesc Amount="5400" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="5" PublishedAmount="2700" PublishedCurrency="RUB" Station="SVO"/>
  <!--Другие таксы-->
  <BrandFeatureDesc Application="C" CommercialName="SECOND EXCESS BAG" ID="1" ServiceGroup="BG" ServiceType="C" SubCode="0CD" Vendor="ATP"/>
  <BrandFeatureDesc Application="F" CommercialName="UPTO50LB 23KG AND62LI 158LCM" ID="2" ServiceGroup="BG" ServiceType="C" SubCode="0GO" Vendor="ATP"/>
  <BrandFeatureDesc Application="C" CommercialName="1ST FISHING EQPMT UPTO 20KG" ID="3" ServiceGroup="BG" ServiceType="C" SubCode="0L1" Vendor="ATP"/>
  <BrandFeatureDesc Application="F" CommercialName="CARRY10KG 22LB 55L X 40W X 25H" ID="4" ServiceGroup="BG" ServiceType="C" SubCode="08A" Vendor="ATP"/>
  <BrandFeatureDesc Application="C" CommercialName="SEAT ASSIGNMENT EXTRA SPACE" ID="5" ServiceGroup="SB" ServiceType="F" SubCode="0BV" Vendor="ATP"/>
  <!--Другие услуги-->
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18 19" Direction="EH" Directionality="TO" FareAmount="2325" FareBasisCode="VLTRT/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="01" GoverningCarrier="UT" ID="1" NotValidAfter="2020-09-08" NotValidBefore="2020-09-08" PublishedFareAmount="4650" TicketDesignator="CH25" VendorCode="ATP">
    <Segment>
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY MINIMUM" Code="MN" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="4 5 7 9 10 15 16 18 19" Direction="EH" Directionality="TO" FareAmount="0" FareBasisCode="OOWDP/IN" FareCurrency="RUB" FarePassengerType="INF" FareRule="H1DP" FareTariff="304" FareType="SIP" FareTypeBitmap="01" GoverningCarrier="H1" ID="2" NotValidAfter="2021-09-01" PublishedFareAmount="0" TicketDesignator="IN" VendorCode="ATP">
    <Segment/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="10 16 19" Direction="EH" Directionality="FROM" FareAmount="3000" FareBasisCode="ENBR/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="ENR1" FareTariff="304" FareType="SB" FareTypeBitmap="01" GoverningCarrier="SU" ID="3" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="6000" TicketDesignator="CH25" VendorCode="ATP">
    <Segment Stopover="true"/>
    <Brand BrandName="ECONOMY LITE" Code="NB" ProgramCode="CFF1S" ProgramDescription="NEW BRANDS AFL" ProgramID="80700" ProgramSystemCode="X"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18 19" Direction="EH" Directionality="TO" FareAmount="0" FareBasisCode="HLTRT/IN" FareCurrency="RUB" FarePassengerType="INF" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="01" GoverningCarrier="UT" ID="4" NotValidAfter="2020-09-09" NotValidBefore="2020-09-09" PublishedFareAmount="0" TicketDesignator="IN" VendorCode="ATP">
    <Segment/>
    <Brand BrandName="ECONOMY MINIMUM" Code="MN" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="4 5 10 15 16 18 19" Direction="EH" Directionality="TO" FareAmount="4575" FareBasisCode="SBSRT/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="SBSC" FareTariff="304" FareType="XAT" FareTypeBitmap="01" GoverningCarrier="S7" ID="5" NotValidAfter="2020-09-08" NotValidBefore="2020-09-08" PublishedFareAmount="9150" TicketDesignator="CH25" VendorCode="ATP">
    <Segment/>
    <Brand BrandName="BASIC ECONOMY" Code="YBS" ProgramCode="S7SM" ProgramDescription="SMART CHOICE" ProgramID="83891" ProgramSystemCode="S"/>
  </FareComponentDesc>
  <!--Другие компоненты тарифов-->
  <ValidatingCarrierDesc ID="1" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="HR"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="2" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="R3"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="3" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="S7"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="4" NewVcxProcess="true" SettlementMethod="TCH">
    <Default Code="UT"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="5" NewVcxProcess="true" SettlementMethod="TCH">
    <Default Code="R3"/>
  </ValidatingCarrierDesc>
  <!--Другие валидирующие перевозчики-->
  <BaggageAllowanceDesc Description1="UP TO 22 POUNDS/10 KILOGRAMS" Description2="UP TO 45 LINEAR INCHES/115 LINEAR CENTIMETERS" ID="1" Pieces="1"/>
  <BaggageAllowanceDesc ID="2" Pieces="0"/>
  <BaggageAllowanceDesc ID="3" Pieces="0"/>
  <BaggageAllowanceDesc ID="4" Pieces="0"/>
  <BaggageAllowanceDesc ID="5" Pieces="0"/>
  <!--Другие нормы провоза багажа-->
  <LegDesc ID="1">
    <Schedule Ref="50"/>
  </LegDesc>
  <LegDesc ID="2">
    <Schedule Ref="51"/>
  </LegDesc>
  <LegDesc ID="3">
    <Schedule Ref="48"/>
  </LegDesc>
  <LegDesc ID="4">
    <Schedule Ref="53"/>
  </LegDesc>
  <LegDesc ID="5">
    <Schedule Ref="52"/>
  </LegDesc>
  <!--Другие плечи-->
  <ItineraryGroup>
    <GroupDescription>
      <LegDescription ArrivalLocation="AER" DepartureDate="2020-09-01" DepartureLocation="DME"/>
      <LegDescription ArrivalLocation="DME" DepartureDate="2020-09-08" DepartureLocation="AER"/>
    </GroupDescription>
    <Itinerary ID="1" PricingSource="ADVJR1">
      <Leg Ref="14"/>
      <Leg Ref="41"/>
      <PricingInformation PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="Y7 Y7" LastTicketDate="2020-01-23" VITA="true" ValidatingCarrierCode="HR">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="57">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="80">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="31"/>
            <Tax Ref="13"/>
            <Tax Ref="33"/>
            <Tax Ref="25"/>
            <Tax Ref="24"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="17"/>
            <TaxSummary Ref="6"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="9600" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="9600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="9600" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11400" TotalTaxes="1800"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="50">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="9">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="31"/>
            <Tax Ref="13"/>
            <Tax Ref="26"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="17"/>
            <TaxSummary Ref="20"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH CNN REQUIRES ACCOMPANYING SAME CABIN ADT" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7200" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7200" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7200" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="8780" TotalTaxes="1580"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="58">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="40">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="AIR EXTRAS NOT APPLICABLE OR ARE UNKNOWN FOR THIS ITINERARY"/>
          <TotalFare BaseFareAmount="26400" BaseFareCurrency="RUB" ConstructionAmount="26400" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="26400" EquivalentCurrency="RUB" TotalPrice="31580" TotalTaxes="5180"/>
          <ValidatingCarrier Ref="1"/>
        </Fare>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="14803.125"/>
    </Itinerary>
    <Itinerary ID="2" PricingSource="ADVJR1">
      <Leg Ref="37"/>
      <Leg Ref="9"/>
      <PricingInformation BrandsOnAnyMarket="true" PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="S7 S7" LastTicketDate="2020-01-24" VITA="true" ValidatingCarrierCode="S7">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="8">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="55"/>
              <BrandFeature Ref="18"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="36"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="20"/>
              <BrandFeature Ref="42"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="19"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="56"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="47"/>
              <BrandFeature Ref="17"/>
            </FareComponent>
            <FareComponent Ref="66">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="55"/>
              <BrandFeature Ref="18"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="36"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="20"/>
              <BrandFeature Ref="42"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="19"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="56"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="47"/>
              <BrandFeature Ref="17"/>
            </FareComponent>
            <Tax Ref="34"/>
            <Tax Ref="16"/>
            <Tax Ref="5"/>
            <Tax Ref="27"/>
            <Tax Ref="33"/>
            <Tax Ref="25"/>
            <Tax Ref="24"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="7"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="6"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="10000" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="10000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="10000" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="13924" TotalTaxes="3924"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="61">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="55"/>
              <BrandFeature Ref="18"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="36"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="20"/>
              <BrandFeature Ref="42"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="19"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="56"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="47"/>
              <BrandFeature Ref="17"/>
            </FareComponent>
            <FareComponent Ref="5">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="55"/>
              <BrandFeature Ref="18"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="36"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="20"/>
              <BrandFeature Ref="42"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="19"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="56"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="47"/>
              <BrandFeature Ref="17"/>
            </FareComponent>
            <Tax Ref="34"/>
            <Tax Ref="16"/>
            <Tax Ref="5"/>
            <Tax Ref="27"/>
            <Tax Ref="26"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="7"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="20"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7500" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7500" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11204" TotalTaxes="3704"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="10">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="55"/>
              <BrandFeature Ref="18"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="36"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="20"/>
              <BrandFeature Ref="42"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="19"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="56"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="47"/>
              <BrandFeature Ref="17"/>
            </FareComponent>
            <FareComponent Ref="55">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="55"/>
              <BrandFeature Ref="18"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="36"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="20"/>
              <BrandFeature Ref="42"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="19"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="56"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="47"/>
              <BrandFeature Ref="17"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="Before" ConditionsApply="true" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="0" Applicability="After" ConditionsApply="true" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="ADDTL AIR EXTRAS APPLY - REFINE REQUEST">
            <AncillaryFee Code="BG" Name="BAGGAGE">
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="1" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN HOLD" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="2" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN CABIN UP TO 8 KG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="3" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="4" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="5" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="6" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="7" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="8" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="9" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="10" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="11" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="12" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="13" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="14" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="15" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="16" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="17" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="18" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="19" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="20" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="21" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="22" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="23" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="24" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="25" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="26" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="27" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="28" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="29" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="30" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="31" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="32" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="33" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="34" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="35" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="36" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="37" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="38" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="39" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="40" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="41" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="42" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="43" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="44" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="45" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="46" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
            </AncillaryFee>
            <OrderStandardBag>
              <PassengerBags Code="ADT">
                <BaggageSequenceOrder BaggageRef="3" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="5" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="7" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="27" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="29" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="31" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="CNN">
                <BaggageSequenceOrder BaggageRef="4" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="6" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="8" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="28" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="30" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="32" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="INF"/>
            </OrderStandardBag>
          </AncillaryFeeGroup>
          <TotalFare BaseFareAmount="27500" BaseFareCurrency="RUB" ConstructionAmount="27500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="27500" EquivalentCurrency="RUB" TotalPrice="39052" TotalTaxes="11552"/>
          <ValidatingCarrier Ref="3"/>
          <ValidatingCarrier Ref="10"/>
        </Fare>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="27067.076"/>
    </Itinerary>
    <!--Другие варианты перелетов-->
  </ItineraryGroup>
  <!--Другие маршруты-->
</GroupedItineraryResponse>


Копировать
<OTA_AirLowFareSearchRQ ResponseType="OTA" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true">
    <CabinPref Cabin="Economy" PreferLevel="Preferred"/>
    <TPA_Extensions>
      <LongConnectTime Enable="true"/>
      <LongConnectPoints Max="3" Min="1"/>
      <KeepSameCabin Enabled="true"/>
      <ExcludeCallDirectCarriers Enabled="true"/>
      <DiversityParameters AdditionalNonStopsPercentage="100"/>
    </TPA_Extensions>
    <AncillaryFees Enable="true">
      <AncillaryFeeGroup Code="BG"/>
    </AncillaryFees>
    <Baggage Description="true" RequestType="A"/>
  </TravelPreferences>
  <TravelerInfoSummary>
    <SeatsRequested>3</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="2">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="CNN" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="INF" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
    </AirTravelerAvail>
    <PriceRequestInformation>
      <TPA_Extensions>
        <BrandedFareIndicators ItinParityBrandlessLeg="true" ItinParityFallbackMode="LegParity" MultipleBrandedFares="true" ParityMode="Itin" ReturnBrandAncillaries="true"/>
      </TPA_Extensions>
    </PriceRequestInformation>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<OTA_AirLowFareSearchRS AvailableItinCount="0" BrandedOneWayItinCount="0" DepartedItinCount="0" PricedItinCount="295" SimpleOneWayItinCount="0" SoldOutItinCount="0" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Success/>
  <Warnings>
    <Warning Code="TRANSACTIONID" MessageClass="I" ShortText="5142194611871862445" Type="WORKERTHREAD"/>
    <Warning Code="ASECT2LAPP00627.IDM.SGDCPROD.SABRE.COM" MessageClass="I" ShortText="27034" Type="SERVER"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="15936" Type="DRE"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="24467" Type="DEFAULT"/>
  </Warnings>
  <BrandFeatures>
    <BrandFeature Application="F" CommercialName="BASIC SEAT" Id="1" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="F" CommercialName="SEAT SELECTION DURING CHECK IN" Id="2" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="C" CommercialName="SEAT SELECTION DURING CHECK IN" Id="3" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="C" CommercialName="BASIC SEAT" Id="4" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="D" CommercialName="REFUNDABLE TICKET" Id="5" ServiceGroup="BF" ServiceType="Z" SubCode="056" Vendor="ATP"/>
    <!--Другие услуги-->
  </BrandFeatures>
  <PricedItineraries>
    <PricedItinerary SequenceNumber="1">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="267"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-08T07:20:00" DepartureDateTime="2020-09-08T05:00:00" ElapsedTime="140" FlightNumber="580" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="580"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="23300" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="2"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6000" CurrencyCode="RUB"/>
              <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8200" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="CNN" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="4700" CurrencyCode="RUB"/>
              <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="6900" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="INF" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="0" CurrencyCode="RUB"/>
              <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <TotalFare Amount="0" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="4"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="8"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <AncillaryFeeGroups>
            <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
            </AncillaryFeeGroup>
          </AncillaryFeeGroups>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <AdditionalFares>
          <AirItineraryPricingInfo FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="24950" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="24950" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="24950" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="31550" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="9000" CurrencyCode="RUB"/>
                  <FareConstruction Amount="9000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="9000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="11200" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                    <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 4100UT MOW Q400 4100RUB9000END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="6950" CurrencyCode="RUB"/>
                  <FareConstruction Amount="6950" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="6950" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="9150" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                    <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 3075UT MOW Q400 3075RUB6950END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INF" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT/IN</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT/IN</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="0" CurrencyCode="RUB"/>
                  <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <TotalFare Amount="0" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                    <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <FareComponents>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <AdditionalFares>
          <AirItineraryPricingInfo FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="45300" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="14000" CurrencyCode="RUB"/>
                  <FareConstruction Amount="14000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="14000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="16200" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 6600UT MOW Q400 6600RUB14000END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="10700" CurrencyCode="RUB"/>
                  <FareConstruction Amount="10700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="10700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="12900" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 4950UT MOW Q400 4950RUB10700END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INF" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/IN</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/IN</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="0" CurrencyCode="RUB"/>
                  <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <TotalFare Amount="0" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="15477.9"/>
      </TPA_Extensions>
    </PricedItinerary>
    <PricedItinerary SequenceNumber="2">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="267"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="135">
            <FlightSegment ArrivalDateTime="2020-09-08T21:45:00" DepartureDateTime="2020-09-08T19:30:00" ElapsedTime="135" FlightNumber="268" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="268"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="23300" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="2"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6000" CurrencyCode="RUB"/>
              <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8200" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="CNN" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="4700" CurrencyCode="RUB"/>
              <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="6900" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="INF" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="0" CurrencyCode="RUB"/>
              <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <TotalFare Amount="0" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="20"/>
                    <BrandFeatureRef FeatureId="73"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="49"/>
                    <BrandFeatureRef FeatureId="64"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="59"/>
                    <BrandFeatureRef FeatureId="78"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="56"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="75"/>
                    <BrandFeatureRef FeatureId="83"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="4"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="6"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <AncillaryFeeGroups>
            <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
            </AncillaryFeeGroup>
          </AncillaryFeeGroups>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <AdditionalFares>
          <AirItineraryPricingInfo FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="24950" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="24950" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="24950" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="31550" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="9000" CurrencyCode="RUB"/>
                  <FareConstruction Amount="9000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="9000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="11200" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                    <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 4100UT MOW Q400 4100RUB9000END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="6950" CurrencyCode="RUB"/>
                  <FareConstruction Amount="6950" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="6950" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="9150" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                    <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 3075UT MOW Q400 3075RUB6950END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INF" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT/IN</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="STRT" FareComponentFareTariff="304" FareComponentFareType="XES" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HSTD15RT/IN</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="0" CurrencyCode="RUB"/>
                  <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <TotalFare Amount="0" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                    <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <FareComponents>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="OP" BrandName="ECONOMY OPTIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="20"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="45"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="62"/>
                        <BrandFeatureRef FeatureId="59"/>
                        <BrandFeatureRef FeatureId="78"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="71"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <AdditionalFares>
          <AirItineraryPricingInfo FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="45300" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="14000" CurrencyCode="RUB"/>
                  <FareConstruction Amount="14000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="14000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="16200" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 6600UT MOW Q400 6600RUB14000END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="10700" CurrencyCode="RUB"/>
                  <FareConstruction Amount="10700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="10700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="12900" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 4950UT MOW Q400 4950RUB10700END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INF" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/IN</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/IN</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="0" CurrencyCode="RUB"/>
                  <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <TotalFare Amount="0" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="19"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="46"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="61"/>
                        <BrandFeatureRef FeatureId="60"/>
                        <BrandFeatureRef FeatureId="77"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="55"/>
                        <BrandFeatureRef FeatureId="72"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="83"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="15123.8"/>
      </TPA_Extensions>
    </PricedItinerary>
    <!--Другие варианты перелетов-->
  </PricedItineraries>
</OTA_AirLowFareSearchRS>


Копировать
<OTA_AirLowFareSearchRQ ResponseType="GIR" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true">
    <CabinPref Cabin="Economy" PreferLevel="Preferred"/>
    <TPA_Extensions>
      <LongConnectTime Enable="true"/>
      <LongConnectPoints Max="3" Min="1"/>
      <KeepSameCabin Enabled="true"/>
      <ExcludeCallDirectCarriers Enabled="true"/>
      <DiversityParameters AdditionalNonStopsPercentage="100"/>
    </TPA_Extensions>
    <AncillaryFees Enable="true">
      <AncillaryFeeGroup Code="BG"/>
    </AncillaryFees>
    <Baggage Description="true" RequestType="A"/>
  </TravelPreferences>
  <TravelerInfoSummary>
    <SeatsRequested>3</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="2">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="CNN" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="INF" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
    </AirTravelerAvail>
    <PriceRequestInformation>
      <TPA_Extensions>
        <BrandedFareIndicators ItinParityBrandlessLeg="true" ItinParityFallbackMode="LegParity" MultipleBrandedFares="true" ParityMode="Itin" ReturnBrandAncillaries="true"/>
      </TPA_Extensions>
    </PriceRequestInformation>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<GroupedItineraryResponse Version="5.2.0" xmlns="http://webservices.sabre.com/wsdl/sabreXML1.0.00/shopping/GroupedItineraryResponse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Message Code="TRANSACTIONID" Severity="Info" Text="5153146470012472521" Type="WORKERTHREAD"/>
  <Message Code="ASE032LPSPILBF1.IDM.SGDCPROD.SABRE.COM" Severity="Info" Text="27034" Type="SERVER"/>
  <Message Code="RULEID" Severity="Info" Text="15936" Type="DRE"/>
  <Message Code="RULEID" Severity="Info" Text="24467" Type="DEFAULT"/>
  <Statistics Itineraries="295"/>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="1" Stops="0" TotalMilesFlown="847">
    <Departure Airport="AER" City="AER" Country="RU" Time="04:25:00+03:00"/>
    <Arrival Airport="VKO" City="MOW" Country="RU" Time="06:40:00+03:00"/>
    <Carrier Disclosure="DP" Marketing="H1" MarketingFlightNumber="1435" Operating="H1" OperatingFlightNumber="1435">
      <Equipment Code="737" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="2" Stops="0" TotalMilesFlown="734">
    <Departure Airport="VKO" City="MOW" Country="RU" Terminal="A" Time="10:50:00+03:00"/>
    <Arrival Airport="KRR" City="KRR" Country="RU" Time="13:00:00+03:00"/>
    <Carrier Marketing="UT" MarketingFlightNumber="575" Operating="UT" OperatingFlightNumber="575">
      <Equipment Code="738" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="3" Stops="0" TotalMilesFlown="873">
    <Departure Airport="AER" City="AER" Country="RU" Time="17:45:00+03:00"/>
    <Arrival Airport="SVO" City="MOW" Country="RU" Terminal="B" Time="20:10:00+03:00"/>
    <Carrier Marketing="SU" MarketingFlightNumber="1125" Operating="SU" OperatingFlightNumber="1125">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="4" Stops="0" TotalMilesFlown="831">
    <Departure Airport="DME" City="MOW" Country="RU" Time="20:00:00+03:00"/>
    <Arrival Airport="AER" City="AER" Country="RU" Time="22:25:00+03:00"/>
    <Carrier Alliances="OW " Marketing="S7" MarketingFlightNumber="2049" Operating="S7" OperatingFlightNumber="2049">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc Frequency="SMTWTFS" ID="5" Stops="0" TotalMilesFlown="116">
    <Departure Airport="AER" City="AER" Country="RU" Time="20:25:00+03:00"/>
    <Arrival Airport="KRR" City="KRR" Country="RU" Time="21:20:00+03:00"/>
    <Carrier Marketing="UT" MarketingFlightNumber="378" Operating="UT" OperatingFlightNumber="378">
      <Equipment Code="AT7" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <!--Другие рейсы-->
  <TaxDesc Amount="190" Code="YQI" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED MISC" ID="1" PublishedAmount="190" PublishedCurrency="RUB" Station="SVO"/>
  <TaxDesc Amount="50" Code="RI4" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC ARRIVAL" ID="2" PublishedAmount="50" PublishedCurrency="RUB" Station="AER"/>
  <TaxDesc Amount="120" Code="RI4" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC ARRIVAL" ID="3" PublishedAmount="120" PublishedCurrency="RUB" Station="SVO"/>
  <TaxDesc Amount="2700" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="4" PublishedAmount="2700" PublishedCurrency="RUB" Station="AER"/>
  <TaxDesc Amount="1300" Code="YRF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="5" PublishedAmount="1300" PublishedCurrency="RUB" Station="DME"/>
  <!--Другие таксы-->
  <TaxSummaryDesc Amount="304" Code="RI3" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC DEPARTURE" ID="1" PublishedAmount="92" PublishedCurrency="RUB" Station="SVO"/>
  <TaxSummaryDesc Amount="2900" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="2" PublishedAmount="500" PublishedCurrency="RUB" Station="VKO"/>
  <TaxSummaryDesc Amount="3400" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="3" PublishedAmount="25.00" PublishedCurrency="EUR" Station="VKO"/>
  <TaxSummaryDesc Amount="262" Code="RI3" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC DEPARTURE" ID="4" PublishedAmount="50" PublishedCurrency="RUB" Station="DME"/>
  <TaxSummaryDesc Amount="5400" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="5" PublishedAmount="2700" PublishedCurrency="RUB" Station="SVO"/>
  <!--Другие таксы-->
  <BrandFeatureDesc Application="C" CommercialName="SECOND EXCESS BAG" ID="1" ServiceGroup="BG" ServiceType="C" SubCode="0CD" Vendor="ATP"/>
  <BrandFeatureDesc Application="F" CommercialName="UPTO50LB 23KG AND62LI 158LCM" ID="2" ServiceGroup="BG" ServiceType="C" SubCode="0GO" Vendor="ATP"/>
  <BrandFeatureDesc Application="F" CommercialName="1ST GOLF EQPMT UPTO 20KG" ID="3" ServiceGroup="BG" ServiceType="C" SubCode="0DC" Vendor="ATP"/>
  <BrandFeatureDesc Application="F" CommercialName="CABIN BAG UPTO 10KG 55X40X25CM" ID="4" ServiceGroup="BG" ServiceType="C" SubCode="08A" Vendor="ATP"/>
  <BrandFeatureDesc Application="C" CommercialName="1ST FISHING EQPMT UPTO 20KG" ID="5" ServiceGroup="BG" ServiceType="C" SubCode="0L1" Vendor="ATP"/>
  <!--Другие услуги-->
  <FareComponentDesc ApplicablePricingCategories="4 5 10 15 16 18 19" Direction="EH" Directionality="TO" FareAmount="6975" FareBasisCode="RFLRT/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="SFLX" FareTariff="304" FareType="XEX" FareTypeBitmap="01" GoverningCarrier="S7" ID="1" NotValidAfter="2020-09-08" NotValidBefore="2020-09-08" PublishedFareAmount="13950" TicketDesignator="CH25" VendorCode="ATP">
    <Segment>
      <Surcharge Amount="2300" Currency="RUB" Description="FUEL" Type="F"/>
    </Segment>
    <Brand BrandName="FLEX ECONOMY" Code="YFL" ProgramCode="S7SM" ProgramDescription="SMART CHOICE" ProgramID="83891" ProgramSystemCode="S"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 16 18 19" Direction="EH" Directionality="TO" FareAmount="5325" FareBasisCode="VFL40RT/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="FLRT" FareTariff="304" FareType="XEX" FareTypeBitmap="01" GoverningCarrier="UT" ID="2" NotValidAfter="2020-09-08" NotValidBefore="2020-09-08" PublishedFareAmount="10650" TicketDesignator="CH25" VendorCode="ATP">
    <Segment>
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY PREMIUM" Code="PR" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18" Direction="EH" Directionality="FROM" FareAmount="2600" FareBasisCode="HLTRT" FareCurrency="RUB" FarePassengerType="ADT" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="00" GoverningCarrier="UT" ID="3" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="5200" VendorCode="ATP">
    <Segment>
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY MINIMUM" Code="MN" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18" Direction="EH" Directionality="FROM" FareAmount="900" FareBasisCode="HLTRT" FareCurrency="RUB" FarePassengerType="ADT" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="00" GoverningCarrier="UT" ID="4" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="1800" VendorCode="ATP">
    <Segment Stopover="true">
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY MINIMUM" Code="MN" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="4 5 10 15 16 18 19" Direction="EH" Directionality="FROM" FareAmount="6975" FareBasisCode="RFLRT/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="SFLX" FareTariff="304" FareType="XEX" FareTypeBitmap="01" GoverningCarrier="S7" ID="5" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="13950" TicketDesignator="CH25" VendorCode="ATP">
    <Segment Stopover="true">
      <Surcharge Amount="2300" Currency="RUB" Description="FUEL" Type="F"/>
    </Segment>
    <Brand BrandName="FLEX ECONOMY" Code="YFL" ProgramCode="S7SM" ProgramDescription="SMART CHOICE" ProgramID="83891" ProgramSystemCode="S"/>
  </FareComponentDesc>
  <!--Другие компоненты тарифов-->
  <ValidatingCarrierDesc ID="1" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="HR"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="2" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="R3"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="3" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="S7"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="4" NewVcxProcess="true" SettlementMethod="TCH">
    <Default Code="UT"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="5" NewVcxProcess="true" SettlementMethod="TCH">
    <Default Code="R3"/>
  </ValidatingCarrierDesc>
  <!--Другие валидирующие перевозчики-->
  <BaggageAllowanceDesc Description1="UP TO 50 POUNDS/23 KILOGRAMS" Description2="UP TO 62 LINEAR INCHES/158 LINEAR CENTIMETERS" ID="1" Pieces="2"/>
  <BaggageAllowanceDesc Description1="UP TO 22 POUNDS/10 KILOGRAMS" Description2="UP TO 45 LINEAR INCHES/115 LINEAR CENTIMETERS" ID="2" Pieces="1"/>
  <BaggageAllowanceDesc Description1="UP TO 44 POUNDS/20 KILOGRAMS" ID="3" Pieces="1"/>
  <BaggageAllowanceDesc ID="4" Pieces="0"/>
  <BaggageAllowanceDesc ID="5" Pieces="0"/>
  <!--Другие нормы провоза багажа-->
  <LegDesc ID="1">
    <Schedule Ref="50"/>
  </LegDesc>
  <LegDesc ID="2">
    <Schedule Ref="51"/>
  </LegDesc>
  <LegDesc ID="3">
    <Schedule Ref="48"/>
  </LegDesc>
  <LegDesc ID="4">
    <Schedule Ref="53"/>
  </LegDesc>
  <LegDesc ID="5">
    <Schedule Ref="52"/>
  </LegDesc>
  <!--Другие плечи-->
  <ItineraryGroup>
    <GroupDescription>
      <LegDescription ArrivalLocation="AER" DepartureDate="2020-09-01" DepartureLocation="DME"/>
      <LegDescription ArrivalLocation="DME" DepartureDate="2020-09-08" DepartureLocation="AER"/>
    </GroupDescription>
    <Itinerary ID="1" PricingSource="ADVJR1">
      <Leg Ref="14"/>
      <Leg Ref="41"/>
      <PricingInformation PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="Y7 Y7" LastTicketDate="2020-01-23" VITA="true" ValidatingCarrierCode="HR">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="87">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="54">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="31"/>
            <Tax Ref="13"/>
            <Tax Ref="33"/>
            <Tax Ref="25"/>
            <Tax Ref="24"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="17"/>
            <TaxSummary Ref="6"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="9600" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="9600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="9600" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11400" TotalTaxes="1800"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="70">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="130">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="31"/>
            <Tax Ref="13"/>
            <Tax Ref="26"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="17"/>
            <TaxSummary Ref="20"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH CNN REQUIRES ACCOMPANYING SAME CABIN ADT" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7200" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7200" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7200" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="8780" TotalTaxes="1580"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="75">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="154">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="AIR EXTRAS NOT APPLICABLE OR ARE UNKNOWN FOR THIS ITINERARY"/>
          <TotalFare BaseFareAmount="26400" BaseFareCurrency="RUB" ConstructionAmount="26400" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="26400" EquivalentCurrency="RUB" TotalPrice="31580" TotalTaxes="5180"/>
          <ValidatingCarrier Ref="1"/>
        </Fare>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="14803.125"/>
    </Itinerary>
    <Itinerary ID="2" PricingSource="ADVJR1">
      <Leg Ref="37"/>
      <Leg Ref="9"/>
      <PricingInformation PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="S7 S7" LastTicketDate="2020-01-24" VITA="true" ValidatingCarrierCode="S7">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="156">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="72"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="82"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <FareComponent Ref="7">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="72"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="82"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <Tax Ref="34"/>
            <Tax Ref="16"/>
            <Tax Ref="5"/>
            <Tax Ref="27"/>
            <Tax Ref="33"/>
            <Tax Ref="25"/>
            <Tax Ref="24"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="7"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="6"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="10000" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="10000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="10000" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="13924" TotalTaxes="3924"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="7"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="7"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="57">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="72"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="82"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <FareComponent Ref="47">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="72"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="82"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <Tax Ref="34"/>
            <Tax Ref="16"/>
            <Tax Ref="5"/>
            <Tax Ref="27"/>
            <Tax Ref="26"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="7"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="20"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7500" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7500" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11204" TotalTaxes="3704"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="7"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="7"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="177">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="72"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="82"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <FareComponent Ref="145">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="33"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="72"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="82"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="7"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="7"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="Before" ConditionsApply="true" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="0" Applicability="After" ConditionsApply="true" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="ADDTL AIR EXTRAS APPLY - REFINE REQUEST">
            <AncillaryFee Code="BG" Name="BAGGAGE">
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="1" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN HOLD" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="2" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN CABIN UP TO 8 KG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="3" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="4" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="5" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="6" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="7" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="8" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="9" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="10" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="11" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="12" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="13" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="14" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="15" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="16" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="17" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="18" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="19" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="20" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="21" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="22" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="23" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="24" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="25" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="26" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="27" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="28" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="29" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="30" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="31" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="32" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="33" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="34" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="35" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="36" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="37" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="38" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="39" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="40" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="41" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="42" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="43" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="44" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="45" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="46" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
            </AncillaryFee>
            <OrderStandardBag>
              <PassengerBags Code="ADT">
                <BaggageSequenceOrder BaggageRef="3" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="5" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="7" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="27" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="29" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="31" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="CNN">
                <BaggageSequenceOrder BaggageRef="4" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="6" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="8" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="28" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="30" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="32" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="INF"/>
            </OrderStandardBag>
          </AncillaryFeeGroup>
          <TotalFare BaseFareAmount="27500" BaseFareCurrency="RUB" ConstructionAmount="27500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="27500" EquivalentCurrency="RUB" TotalPrice="39052" TotalTaxes="11552"/>
          <ValidatingCarrier Ref="3"/>
          <ValidatingCarrier Ref="10"/>
        </Fare>
      </PricingInformation>
      <PricingInformation PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="S7 S7" LastTicketDate="2020-01-24" VITA="true" ValidatingCarrierCode="S7">
          <PassengerInfo NonRefundable="false" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="158">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="11"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <FareComponent Ref="173">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="11"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <Tax Ref="34"/>
            <Tax Ref="16"/>
            <Tax Ref="5"/>
            <Tax Ref="27"/>
            <Tax Ref="33"/>
            <Tax Ref="25"/>
            <Tax Ref="24"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="7"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="6"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="12700" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="12700" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="12700" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="16624" TotalTaxes="3924"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="13"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="13"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="5000" Applicability="Before" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="5000" Applicability="After" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="false" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="121">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="11"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <FareComponent Ref="146">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="11"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <Tax Ref="34"/>
            <Tax Ref="16"/>
            <Tax Ref="5"/>
            <Tax Ref="27"/>
            <Tax Ref="26"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="7"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="20"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="9525" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="9525" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="9525" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="13229" TotalTaxes="3704"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="13"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="13"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="5000" Applicability="Before" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="5000" Applicability="After" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="false" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="25">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="11"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <FareComponent Ref="111">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="93"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="41"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="11"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="54"/>
              <BrandFeature Ref="8"/>
              <BrandFeature Ref="26"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="73"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="69"/>
              <BrandFeature Ref="63"/>
              <BrandFeature Ref="24"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="12"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="12"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="Before" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="0" Applicability="After" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="ADDTL AIR EXTRAS APPLY - REFINE REQUEST">
            <AncillaryFee Code="BG" Name="BAGGAGE">
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="1" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN HOLD" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="2" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN CABIN UP TO 8 KG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="3" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="4" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="5" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="6" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="7" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="8" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="9" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="10" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="11" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="12" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="13" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="14" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="15" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="16" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="17" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="18" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="19" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="20" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="21" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="22" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="23" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="24" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="25" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="26" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="27" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="28" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="29" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="30" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="31" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="32" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="33" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="34" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="35" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="36" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="37" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="38" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="39" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="40" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="41" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="42" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="43" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="44" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="45" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="46" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
            </AncillaryFee>
            <OrderStandardBag>
              <PassengerBags Code="ADT">
                <BaggageSequenceOrder BaggageRef="3" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="5" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="7" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="27" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="29" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="31" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="CNN">
                <BaggageSequenceOrder BaggageRef="4" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="6" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="8" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="28" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="30" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="32" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="INF"/>
            </OrderStandardBag>
          </AncillaryFeeGroup>
          <TotalFare BaseFareAmount="34925" BaseFareCurrency="RUB" ConstructionAmount="34925" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="34925" EquivalentCurrency="RUB" TotalPrice="46477" TotalTaxes="11552"/>
          <ValidatingCarrier Ref="3"/>
          <ValidatingCarrier Ref="10"/>
        </Fare>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="27067.076"/>
    </Itinerary>
    <!--Другие варианты перелетов-->
  </ItineraryGroup>
  <!--Другие маршруты-->
</GroupedItineraryResponse>


Копировать
<OTA_AirLowFareSearchRQ ResponseType="OTA" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true">
    <CabinPref Cabin="Economy" PreferLevel="Preferred"/>
    <TPA_Extensions>
      <LongConnectTime Enable="true"/>
      <LongConnectPoints Max="3" Min="1"/>
      <KeepSameCabin Enabled="true"/>
      <ExcludeCallDirectCarriers Enabled="true"/>
      <FlexibleFares>
        <FareParameters>
          <Cabin Type="Business"/>
          <KeepSameCabin Enabled="true"/>
        </FareParameters>
        <FareParameters>
          <PassengerTypeQuantity Code="ADT" Quantity="2"/>
          <PassengerTypeQuantity Code="CNN" Quantity="1"/>
          <PassengerTypeQuantity Code="INS" Quantity="1"/>
        </FareParameters>
        <FareParameters>
          <PublicFare Ind="true"/>
        </FareParameters>
        <FareParameters>
          <VoluntaryChanges Match="All">
            <Penalty Type="Refund"/>
          </VoluntaryChanges>
        </FareParameters>
      </FlexibleFares>
      <DiversityParameters AdditionalNonStopsPercentage="100"/>
    </TPA_Extensions>
    <AncillaryFees Enable="true">
      <AncillaryFeeGroup Code="BG"/>
    </AncillaryFees>
    <Baggage Description="true" RequestType="A"/>
  </TravelPreferences>
  <TravelerInfoSummary>
    <SeatsRequested>3</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="2">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="CNN" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="INF" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
    </AirTravelerAvail>
    <PriceRequestInformation>
      <TPA_Extensions>
        <BrandedFareIndicators ReturnBrandAncillaries="true" SingleBrandedFare="true"/>
      </TPA_Extensions>
    </PriceRequestInformation>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<OTA_AirLowFareSearchRS AvailableItinCount="0" BrandedOneWayItinCount="0" DepartedItinCount="0" PricedItinCount="300" SimpleOneWayItinCount="0" SoldOutItinCount="0" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Success/>
  <Warnings>
    <Warning Code="PROCESS" ShortText="NO SOLUTION PASSED INTERLINE TICKETING VALIDATION" Type="MIP"/>
    <Warning Code="PROCESS" ShortText="NO SOLUTION PASSED INTERLINE TICKETING VALIDATION" Type="MIP"/>
    <Warning Code="TRANSACTIONID" MessageClass="I" ShortText="5154032908280688782" Type="WORKERTHREAD"/>
    <Warning Code="ASE002LPSPIL425.IDM.SGDCPROD.SABRE.COM" MessageClass="I" ShortText="27033" Type="SERVER"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="15936" Type="DRE"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="24467" Type="DEFAULT"/>
    <Warning Code="MIP" MessageClass="I" ShortText="NO SOLUTION PASSED INTERLINE TICKETING VALIDATION" Type="MIP"/>
  </Warnings>
  <BrandFeatures>
    <BrandFeature Application="F" CommercialName="SEAT SELECTION DURING CHECK IN" Id="1" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="C" CommercialName="SEAT SELECTION DURING CHECK IN" Id="2" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="C" CommercialName="BASIC SEAT" Id="3" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="F" CommercialName="BASIC SEAT" Id="4" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="D" CommercialName="REFUNDABLE TICKET" Id="5" ServiceGroup="BF" ServiceType="Z" SubCode="056" Vendor="ATP"/>
    <!--Другие услуги-->
  </BrandFeatures>
  <PricedItineraries>
    <PricedItinerary SequenceNumber="1">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="267"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="135">
            <FlightSegment ArrivalDateTime="2020-09-08T21:45:00" DepartureDateTime="2020-09-08T19:30:00" ElapsedTime="135" FlightNumber="268" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="268"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="23300" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="2"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6000" CurrencyCode="RUB"/>
              <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8200" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="CNN" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="4700" CurrencyCode="RUB"/>
              <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="6900" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="INF" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="0" CurrencyCode="RUB"/>
              <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <TotalFare Amount="0" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="4"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="6"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <AncillaryFeeGroups>
            <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
            </AncillaryFeeGroup>
          </AncillaryFeeGroups>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <AdditionalFares>
          <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" FlexibleFareID="1" LastTicketDate="2020-01-29" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="216900" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="216900" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="216900" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="223500" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="78800" CurrencyCode="RUB"/>
                  <FareConstruction Amount="78800" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="78800" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="81000" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 70 POUNDS/32 KILOGRAMS" Description2="UP TO 80 LINEAR INCHES/203 LINEAR CENTIMETERS" Pieces="2"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 70 POUNDS/32 KILOGRAMS" Description2="UP TO 80 LINEAR INCHES/203 LINEAR CENTIMETERS" Pieces="2"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="false"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 39000UT MOW Q400 39000RUB78800END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="59300" CurrencyCode="RUB"/>
                  <FareConstruction Amount="59300" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="59300" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="61500" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 70 POUNDS/32 KILOGRAMS" Description2="UP TO 80 LINEAR INCHES/203 LINEAR CENTIMETERS" Pieces="2"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 70 POUNDS/32 KILOGRAMS" Description2="UP TO 80 LINEAR INCHES/203 LINEAR CENTIMETERS" Pieces="2"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="false"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 29250UT MOW Q400 29250RUB59300END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INF" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT/IN</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT/IN</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="0" CurrencyCode="RUB"/>
                  <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <TotalFare Amount="0" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <FareComponents>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="false"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>D</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="C"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>D</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="C"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <AdditionalFares>
          <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" FlexibleFareID="2" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="21400" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="21400" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="21400" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="8800" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="30200" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="6000" CurrencyCode="RUB"/>
                  <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="8200" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="4700" CurrencyCode="RUB"/>
                  <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="6900" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INS" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="4700" CurrencyCode="RUB"/>
                  <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="6900" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <AdditionalFares>
          <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" FlexibleFareID="3" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="23300" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="6000" CurrencyCode="RUB"/>
                  <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="8200" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="4700" CurrencyCode="RUB"/>
                  <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="6900" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INF" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="0" CurrencyCode="RUB"/>
                  <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <TotalFare Amount="0" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <AdditionalFares>
          <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" FlexibleFareID="4" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="45300" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="14000" CurrencyCode="RUB"/>
                  <FareConstruction Amount="14000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="14000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="16200" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 6600UT MOW Q400 6600RUB14000END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="10700" CurrencyCode="RUB"/>
                  <FareConstruction Amount="10700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="10700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="12900" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 4950UT MOW Q400 4950RUB10700END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INF" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/IN</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/IN</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="0" CurrencyCode="RUB"/>
                  <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <TotalFare Amount="0" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="6"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="15123.8"/>
      </TPA_Extensions>
    </PricedItinerary>
    <PricedItinerary SequenceNumber="2">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="267"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-08T07:20:00" DepartureDateTime="2020-09-08T05:00:00" ElapsedTime="140" FlightNumber="580" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="580"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="23300" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="2"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6000" CurrencyCode="RUB"/>
              <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8200" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="CNN" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="4700" CurrencyCode="RUB"/>
              <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="6900" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="INF" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="0" CurrencyCode="RUB"/>
              <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <TotalFare Amount="0" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="8"/>
                    <BrandFeatureRef FeatureId="5"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="86"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="74"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="69"/>
                    <BrandFeatureRef FeatureId="67"/>
                    <BrandFeatureRef FeatureId="89"/>
                    <BrandFeatureRef FeatureId="81"/>
                    <BrandFeatureRef FeatureId="76"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="82"/>
                    <BrandFeatureRef FeatureId="87"/>
                    <BrandFeatureRef FeatureId="98"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="4"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="8"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <AncillaryFeeGroups>
            <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
            </AncillaryFeeGroup>
          </AncillaryFeeGroups>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <AdditionalFares>
          <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" FlexibleFareID="1" LastTicketDate="2020-01-29" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="216900" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="216900" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="216900" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="223500" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="78800" CurrencyCode="RUB"/>
                  <FareConstruction Amount="78800" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="78800" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="81000" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 70 POUNDS/32 KILOGRAMS" Description2="UP TO 80 LINEAR INCHES/203 LINEAR CENTIMETERS" Pieces="2"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 70 POUNDS/32 KILOGRAMS" Description2="UP TO 80 LINEAR INCHES/203 LINEAR CENTIMETERS" Pieces="2"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="false"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 39000UT MOW Q400 39000RUB78800END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="59300" CurrencyCode="RUB"/>
                  <FareConstruction Amount="59300" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="59300" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="61500" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 70 POUNDS/32 KILOGRAMS" Description2="UP TO 80 LINEAR INCHES/203 LINEAR CENTIMETERS" Pieces="2"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 70 POUNDS/32 KILOGRAMS" Description2="UP TO 80 LINEAR INCHES/203 LINEAR CENTIMETERS" Pieces="2"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="false"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 29250UT MOW Q400 29250RUB59300END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INF" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT/IN</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="D" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="BX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">DFLEXRT/IN</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="0" CurrencyCode="RUB"/>
                  <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <TotalFare Amount="0" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <FareComponents>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                      <FareComponent BrandID="BS" BrandName="BUSINESS" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="7"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="58"/>
                        <BrandFeatureRef FeatureId="73"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="99"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="false"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>D</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="C"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>D</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="C"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>D</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="C"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <AdditionalFares>
          <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" FlexibleFareID="2" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="21400" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="21400" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="21400" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="8800" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="30200" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="6000" CurrencyCode="RUB"/>
                  <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="8200" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="4700" CurrencyCode="RUB"/>
                  <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="6900" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INS" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="4700" CurrencyCode="RUB"/>
                  <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="6900" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <AdditionalFares>
          <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" FlexibleFareID="3" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="23300" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="6000" CurrencyCode="RUB"/>
                  <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="8200" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="4700" CurrencyCode="RUB"/>
                  <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="6900" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INF" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="0" CurrencyCode="RUB"/>
                  <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <TotalFare Amount="0" CurrencyCode="RUB"/>
                  <TPA_Extensions>
                    <FareComponents>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="5"/>
                        <BrandFeatureRef FeatureId="22"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="52"/>
                        <BrandFeatureRef FeatureId="57"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="66"/>
                        <BrandFeatureRef FeatureId="69"/>
                        <BrandFeatureRef FeatureId="67"/>
                        <BrandFeatureRef FeatureId="89"/>
                        <BrandFeatureRef FeatureId="81"/>
                        <BrandFeatureRef FeatureId="76"/>
                        <BrandFeatureRef FeatureId="63"/>
                        <BrandFeatureRef FeatureId="82"/>
                        <BrandFeatureRef FeatureId="87"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <AdditionalFares>
          <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" FlexibleFareID="4" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
            <ItinTotalFare>
              <BaseFare Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <FareConstruction Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="38700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
              </Taxes>
              <TotalFare Amount="45300" CurrencyCode="RUB" DecimalPlaces="0"/>
            </ItinTotalFare>
            <PTC_FareBreakdowns>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="ADT" Quantity="2"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="14000" CurrencyCode="RUB"/>
                  <FareConstruction Amount="14000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="14000" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="16200" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 6600UT MOW Q400 6600RUB14000END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="CNN" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/CH25</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/CH25</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="10700" CurrencyCode="RUB"/>
                  <FareConstruction Amount="10700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="10700" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <Taxes>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                    <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                    <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
                  </Taxes>
                  <TotalFare Amount="12900" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Description1="UP TO 44 POUNDS/20 KILOGRAMS" Pieces="1"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER Q400 4950UT MOW Q400 4950RUB10700END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
              <PTC_FareBreakdown>
                <PassengerTypeQuantity Code="INF" Quantity="1"/>
                <FareBasisCodes>
                  <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/IN</FareBasisCode>
                  <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="FLRT" FareComponentFareTariff="304" FareComponentFareType="XEX" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HFL40RT/IN</FareBasisCode>
                </FareBasisCodes>
                <PassengerFare>
                  <BaseFare Amount="0" CurrencyCode="RUB"/>
                  <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                  <TotalFare Amount="0" CurrencyCode="RUB"/>
                  <PenaltiesInfo>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                    <Penalty Amount="4000" Applicability="Before" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                    <Penalty Amount="4000" Applicability="After" Cat16Info="true" CurrencyCode="RUB" DecimalPlaces="0" Refundable="true" Type="Refund"/>
                  </PenaltiesInfo>
                  <TPA_Extensions>
                    <FareComponents>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="1"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                      <FareComponent BrandID="PR" BrandName="ECONOMY PREMIUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                        <Segment FlightIndex="1" LegIndex="2"/>
                        <BrandFeatureRef FeatureId="8"/>
                        <BrandFeatureRef FeatureId="6"/>
                        <BrandFeatureRef FeatureId="21"/>
                        <BrandFeatureRef FeatureId="86"/>
                        <BrandFeatureRef FeatureId="50"/>
                        <BrandFeatureRef FeatureId="56"/>
                        <BrandFeatureRef FeatureId="74"/>
                        <BrandFeatureRef FeatureId="65"/>
                        <BrandFeatureRef FeatureId="70"/>
                        <BrandFeatureRef FeatureId="68"/>
                        <BrandFeatureRef FeatureId="90"/>
                        <BrandFeatureRef FeatureId="80"/>
                        <BrandFeatureRef FeatureId="75"/>
                        <BrandFeatureRef FeatureId="64"/>
                        <BrandFeatureRef FeatureId="83"/>
                        <BrandFeatureRef FeatureId="88"/>
                        <BrandFeatureRef FeatureId="98"/>
                      </FareComponent>
                    </FareComponents>
                    <Messages>
                      <Message AirlineCode="UT" FailCode="0" Info="NO FREE MEAL" Type="N"/>
                      <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                      <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                      <Message FailCode="0" Info="BSP - UT" Type="W"/>
                      <Message FailCode="0" Info="GEN - UT" Type="W"/>
                      <Message FailCode="0" Info="TCH - UT" Type="W"/>
                    </Messages>
                    <BaggageInformationList>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="0"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                      <BaggageInformation AirlineCode="UT" ProvisionType="A">
                        <Segment Id="1"/>
                        <Allowance Pieces="0"/>
                      </BaggageInformation>
                    </BaggageInformationList>
                  </TPA_Extensions>
                </PassengerFare>
                <Endorsements NonRefundableIndicator="true"/>
                <TPA_Extensions>
                  <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
                </TPA_Extensions>
                <FareInfos>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="4"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                  <FareInfo>
                    <FareReference>H</FareReference>
                    <TPA_Extensions>
                      <SeatsRemaining BelowMin="false" Number="8"/>
                      <Cabin Cabin="Y"/>
                    </TPA_Extensions>
                  </FareInfo>
                </FareInfos>
              </PTC_FareBreakdown>
            </PTC_FareBreakdowns>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
            <TPA_Extensions>
              <DivideInParty Indicator="false"/>
              <AncillaryFeeGroups>
                <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
                  <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
                  <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
                </AncillaryFeeGroup>
              </AncillaryFeeGroups>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
                <Default Code="UT"/>
              </ValidatingCarrier>
              <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
                <Default Code="UT"/>
              </ValidatingCarrier>
            </TPA_Extensions>
          </AirItineraryPricingInfo>
          <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        </AdditionalFares>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="15477.9"/>
      </TPA_Extensions>
    </PricedItinerary>
    <!--Другие варианты перелетов-->
  </PricedItineraries>
</OTA_AirLowFareSearchRS>


Копировать
<OTA_AirLowFareSearchRQ ResponseType="GIR" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true">
    <CabinPref Cabin="Economy" PreferLevel="Preferred"/>
    <TPA_Extensions>
      <LongConnectTime Enable="true"/>
      <LongConnectPoints Max="3" Min="1"/>
      <KeepSameCabin Enabled="true"/>
      <ExcludeCallDirectCarriers Enabled="true"/>
      <FlexibleFares>
        <FareParameters>
          <Cabin Type="Business"/>
          <KeepSameCabin Enabled="true"/>
        </FareParameters>
        <FareParameters>
          <PassengerTypeQuantity Code="ADT" Quantity="2"/>
          <PassengerTypeQuantity Code="CNN" Quantity="1"/>
          <PassengerTypeQuantity Code="INS" Quantity="1"/>
        </FareParameters>
        <FareParameters>
          <PublicFare Ind="true"/>
        </FareParameters>
        <FareParameters>
          <VoluntaryChanges Match="All">
            <Penalty Type="Refund"/>
          </VoluntaryChanges>
        </FareParameters>
      </FlexibleFares>
      <DiversityParameters AdditionalNonStopsPercentage="100"/>
    </TPA_Extensions>
    <AncillaryFees Enable="true">
      <AncillaryFeeGroup Code="BG"/>
    </AncillaryFees>
    <Baggage Description="true" RequestType="A"/>
  </TravelPreferences>
  <TravelerInfoSummary>
    <SeatsRequested>3</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="2">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="CNN" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="INF" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
    </AirTravelerAvail>
    <PriceRequestInformation>
      <TPA_Extensions>
        <BrandedFareIndicators ReturnBrandAncillaries="true" SingleBrandedFare="true"/>
      </TPA_Extensions>
    </PriceRequestInformation>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<GroupedItineraryResponse Version="5.2.0" xmlns="http://webservices.sabre.com/wsdl/sabreXML1.0.00/shopping/GroupedItineraryResponse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Message Code="TRANSACTIONID" Severity="Info" Text="5154638133628831413" Type="WORKERTHREAD"/>
  <Message Code="ASE032LPSPILBF1.IDM.SGDCPROD.SABRE.COM" Severity="Info" Text="27042" Type="SERVER"/>
  <Message Code="RULEID" Severity="Info" Text="15936" Type="DRE"/>
  <Message Code="RULEID" Severity="Info" Text="24467" Type="DEFAULT"/>
  <Message Code="PROCESS" Severity="Error" Text="NO SOLUTION PASSED INTERLINE TICKETING VALIDATION" Type="MIP"/>
  <Message Code="PROCESS" Severity="Error" Text="NO SOLUTION PASSED INTERLINE TICKETING VALIDATION" Type="MIP"/>
  <Message Code="MIP" Severity="Info" Text="NO SOLUTION PASSED INTERLINE TICKETING VALIDATION" Type="MIP"/>
  <Statistics Itineraries="300"/>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="1" Stops="0" TotalMilesFlown="847">
    <Departure Airport="AER" City="AER" Country="RU" Time="04:25:00+03:00"/>
    <Arrival Airport="VKO" City="MOW" Country="RU" Time="06:40:00+03:00"/>
    <Carrier Disclosure="DP" Marketing="H1" MarketingFlightNumber="1435" Operating="H1" OperatingFlightNumber="1435">
      <Equipment Code="737" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="2" Stops="0" TotalMilesFlown="734">
    <Departure Airport="VKO" City="MOW" Country="RU" Terminal="A" Time="10:50:00+03:00"/>
    <Arrival Airport="KRR" City="KRR" Country="RU" Time="13:00:00+03:00"/>
    <Carrier Marketing="UT" MarketingFlightNumber="575" Operating="UT" OperatingFlightNumber="575">
      <Equipment Code="738" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="3" Stops="0" TotalMilesFlown="873">
    <Departure Airport="AER" City="AER" Country="RU" Time="17:45:00+03:00"/>
    <Arrival Airport="SVO" City="MOW" Country="RU" Terminal="B" Time="20:10:00+03:00"/>
    <Carrier Marketing="SU" MarketingFlightNumber="1125" Operating="SU" OperatingFlightNumber="1125">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="4" Stops="0" TotalMilesFlown="831">
    <Departure Airport="DME" City="MOW" Country="RU" Time="20:00:00+03:00"/>
    <Arrival Airport="AER" City="AER" Country="RU" Time="22:25:00+03:00"/>
    <Carrier Alliances="OW " Marketing="S7" MarketingFlightNumber="2049" Operating="S7" OperatingFlightNumber="2049">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="S*T*T*S" ID="5" Stops="0" TotalMilesFlown="831">
    <Departure Airport="AER" City="AER" Country="RU" Time="17:10:00+03:00"/>
    <Arrival Airport="DME" City="MOW" Country="RU" Time="19:50:00+03:00"/>
    <Carrier Marketing="Y7" MarketingFlightNumber="1032" Operating="Y7" OperatingFlightNumber="1032">
      <Equipment Code="738" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <!--Другие рейсы-->
  <TaxDesc Amount="190" Code="YQI" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED MISC" ID="1" PublishedAmount="190" PublishedCurrency="RUB" Station="SVO"/>
  <TaxDesc Amount="50" Code="RI4" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC ARRIVAL" ID="2" PublishedAmount="50" PublishedCurrency="RUB" Station="AER"/>
  <TaxDesc Amount="120" Code="RI4" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC ARRIVAL" ID="3" PublishedAmount="120" PublishedCurrency="RUB" Station="SVO"/>
  <TaxDesc Amount="2700" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="4" PublishedAmount="2700" PublishedCurrency="RUB" Station="AER"/>
  <TaxDesc Amount="1300" Code="YRF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="5" PublishedAmount="1300" PublishedCurrency="RUB" Station="DME"/>
  <!--Другие таксы-->
  <TaxSummaryDesc Amount="5842" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="1" PublishedAmount="5400" PublishedCurrency="RUB" Station="SVO"/>
  <TaxSummaryDesc Amount="304" Code="RI3" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC DEPARTURE" ID="2" PublishedAmount="92" PublishedCurrency="RUB" Station="SVO"/>
  <TaxSummaryDesc Amount="5842" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="3" PublishedAmount="5400" PublishedCurrency="RUB" Station="AER"/>
  <TaxSummaryDesc Amount="3400" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="4" PublishedAmount="25.00" PublishedCurrency="EUR" Station="VKO"/>
  <TaxSummaryDesc Amount="262" Code="RI3" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC DEPARTURE" ID="5" PublishedAmount="50" PublishedCurrency="RUB" Station="DME"/>
  <!--Другие таксы-->
  <BrandFeatureDesc Application="C" CommercialName="SECOND EXCESS BAG" ID="1" ServiceGroup="BG" ServiceType="C" SubCode="0CD" Vendor="ATP"/>
  <BrandFeatureDesc Application="F" CommercialName="UPTO50LB 23KG AND62LI 158LCM" ID="2" ServiceGroup="BG" ServiceType="C" SubCode="0GO" Vendor="ATP"/>
  <BrandFeatureDesc Application="F" CommercialName="1ST GOLF EQPMT UPTO 20KG" ID="3" ServiceGroup="BG" ServiceType="C" SubCode="0DC" Vendor="ATP"/>
  <BrandFeatureDesc Application="F" CommercialName="CABIN BAG UPTO 10KG 55X40X25CM" ID="4" ServiceGroup="BG" ServiceType="C" SubCode="08A" Vendor="ATP"/>
  <BrandFeatureDesc Application="C" CommercialName="1ST FISHING EQPMT UPTO 20KG" ID="5" ServiceGroup="BG" ServiceType="C" SubCode="0L1" Vendor="ATP"/>
  <!--Другие услуги-->
  <FareComponentDesc ApplicablePricingCategories="4 5 6 7 10 12 15 16 18 19" Direction="EH" Directionality="TO" FareAmount="4420" FareBasisCode="TPMRT/CH20" FareCurrency="RUB" FarePassengerType="CNN" FareRule="N4BB" FareTariff="304" FareType="WR" FareTypeBitmap="01" GoverningCarrier="N4" ID="1" NotValidAfter="2021-07-08" NotValidBefore="2020-09-01" PublishedFareAmount="8840" TicketDesignator="CH20" VendorCode="ATP">
    <Segment/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 16 18 19" Direction="EH" Directionality="FROM" FareAmount="3675" FareBasisCode="HFL40RT/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="FLRT" FareTariff="304" FareType="XEX" FareTypeBitmap="01" GoverningCarrier="UT" ID="2" NotValidAfter="2020-09-02" NotValidBefore="2020-09-02" PublishedFareAmount="7350" TicketDesignator="CH25" VendorCode="ATP">
    <Segment Stopover="true">
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY PREMIUM" Code="PR" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="4 5 10 15 16 18 19" Direction="EH" Directionality="TO" FareAmount="6975" FareBasisCode="RFLRT/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="SFLX" FareTariff="304" FareType="XEX" FareTypeBitmap="01" GoverningCarrier="S7" ID="3" NotValidAfter="2020-09-08" NotValidBefore="2020-09-08" PublishedFareAmount="13950" TicketDesignator="CH25" VendorCode="ATP">
    <Segment>
      <Surcharge Amount="2300" Currency="RUB" Description="FUEL" Type="F"/>
    </Segment>
    <Brand BrandName="FLEX ECONOMY" Code="YFL" ProgramCode="S7SM" ProgramDescription="SMART CHOICE" ProgramID="83891" ProgramSystemCode="S"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 16 18 19" Direction="EH" Directionality="TO" FareAmount="5325" FareBasisCode="VFL40RT/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="FLRT" FareTariff="304" FareType="XEX" FareTypeBitmap="01" GoverningCarrier="UT" ID="4" NotValidAfter="2020-09-08" NotValidBefore="2020-09-08" PublishedFareAmount="10650" TicketDesignator="CH25" VendorCode="ATP">
    <Segment>
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY PREMIUM" Code="PR" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18" Direction="EH" Directionality="FROM" FareAmount="2600" FareBasisCode="HLTRT" FareCurrency="RUB" FarePassengerType="ADT" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="00" GoverningCarrier="UT" ID="5" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="5200" VendorCode="ATP">
    <Segment>
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY MINIMUM" Code="MN" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <!--Другие компоненты тарифов-->
  <ValidatingCarrierDesc ID="1" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="HR"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="2" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="R3"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="3" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="S7"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="4" NewVcxProcess="true" SettlementMethod="TCH">
    <Default Code="UT"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="5" NewVcxProcess="true" SettlementMethod="TCH">
    <Default Code="R3"/>
  </ValidatingCarrierDesc>
  <!--Другие валидирующие перевозчики-->
  <BaggageAllowanceDesc Description1="UP TO 70 POUNDS/32 KILOGRAMS" Description2="UP TO 80 LINEAR INCHES/203 LINEAR CENTIMETERS" ID="1" Pieces="2"/>
  <BaggageAllowanceDesc Description1="UP TO 22 POUNDS/10 KILOGRAMS" Description2="UP TO 45 LINEAR INCHES/115 LINEAR CENTIMETERS" ID="2" Pieces="1"/>
  <BaggageAllowanceDesc Description1="UP TO 22 POUNDS/10 KILOGRAMS" Description2="UP TO 80 LINEAR INCHES/203 LINEAR CENTIMETERS" ID="3" Pieces="1"/>
  <BaggageAllowanceDesc Description1="UP TO 44 POUNDS/20 KILOGRAMS" ID="4" Pieces="1"/>
  <BaggageAllowanceDesc ID="5" Pieces="0"/>
  <!--Другие нормы провоза багажа-->
  <LegDesc ID="1">
    <Schedule Ref="47"/>
  </LegDesc>
  <LegDesc ID="2">
    <Schedule Ref="48"/>
  </LegDesc>
  <LegDesc ID="3">
    <Schedule Ref="45"/>
  </LegDesc>
  <LegDesc ID="4">
    <Schedule Ref="50"/>
  </LegDesc>
  <LegDesc ID="5">
    <Schedule Ref="49"/>
  </LegDesc>
  <!--Другие плечи-->
  <ItineraryGroup>
    <GroupDescription>
      <LegDescription ArrivalLocation="AER" DepartureDate="2020-09-01" DepartureLocation="DME"/>
      <LegDescription ArrivalLocation="DME" DepartureDate="2020-09-08" DepartureLocation="AER"/>
    </GroupDescription>
    <Itinerary ID="1" PricingSource="ADVJR1">
      <Leg Ref="14"/>
      <Leg Ref="39"/>
      <PricingInformation PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="Y7 Y7" LastTicketDate="2020-01-23" VITA="true" ValidatingCarrierCode="HR">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="102">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="63">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="13"/>
            <Tax Ref="34"/>
            <Tax Ref="26"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="18"/>
            <TaxSummary Ref="7"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="9600" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="9600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="9600" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11400" TotalTaxes="1800"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="81">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="169">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="13"/>
            <Tax Ref="27"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="18"/>
            <TaxSummary Ref="22"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH CNN REQUIRES ACCOMPANYING SAME CABIN ADT" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7200" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7200" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7200" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="8780" TotalTaxes="1580"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="false" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="139">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="156">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="AIR EXTRAS NOT APPLICABLE OR ARE UNKNOWN FOR THIS ITINERARY"/>
          <TotalFare BaseFareAmount="26400" BaseFareCurrency="RUB" ConstructionAmount="26400" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="26400" EquivalentCurrency="RUB" TotalPrice="31580" TotalTaxes="5180"/>
          <ValidatingCarrier Ref="1"/>
        </Fare>
      </PricingInformation>
      <PricingInformation FlexibleFare="1" PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="Y7 Y7" LastTicketDate="2020-01-28" VITA="true" ValidatingCarrierCode="HR">
          <PassengerInfo NonRefundable="false" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="204">
              <Segment AvailabilityBreak="true" BookingCode="D" CabinCode="C" SeatsAvailable="4"/>
            </FareComponent>
            <FareComponent Ref="94">
              <Segment AvailabilityBreak="true" BookingCode="D" CabinCode="C" SeatsAvailable="4"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="13"/>
            <Tax Ref="34"/>
            <Tax Ref="26"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="18"/>
            <TaxSummary Ref="7"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="IF NO-SHOW NON-REFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="64000" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="64000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="64000" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="65800" TotalTaxes="1800"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
          </PassengerInfo>
          <PassengerInfo NonRefundable="false" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="95">
              <Segment AvailabilityBreak="true" BookingCode="D" CabinCode="C" SeatsAvailable="4"/>
            </FareComponent>
            <FareComponent Ref="134">
              <Segment AvailabilityBreak="true" BookingCode="D" CabinCode="C" SeatsAvailable="4"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="13"/>
            <Tax Ref="27"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="18"/>
            <TaxSummary Ref="22"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="IF NO-SHOW NON-REFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH CNN REQUIRES ACCOMPANYING SAME CABIN ADT" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="32000" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="32000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="32000" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="33580" TotalTaxes="1580"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
          </PassengerInfo>
          <PassengerInfo NonRefundable="false" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="170">
              <Segment AvailabilityBreak="true" BookingCode="D" CabinCode="C" SeatsAvailable="4"/>
            </FareComponent>
            <FareComponent Ref="123">
              <Segment AvailabilityBreak="true" BookingCode="D" CabinCode="C" SeatsAvailable="4"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="IF NO-SHOW NON-REFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
          </PassengerInfo>
          <AncillaryFeeGroup Message="AIR EXTRAS NOT APPLICABLE OR ARE UNKNOWN FOR THIS ITINERARY"/>
          <TotalFare BaseFareAmount="160000" BaseFareCurrency="RUB" ConstructionAmount="160000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="160000" EquivalentCurrency="RUB" TotalPrice="165180" TotalTaxes="5180"/>
          <ValidatingCarrier Ref="1"/>
        </Fare>
      </PricingInformation>
      <PricingInformation FlexibleFare="2" PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="Y7 Y7" LastTicketDate="2020-01-23" VITA="true" ValidatingCarrierCode="HR">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="102">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="63">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="13"/>
            <Tax Ref="34"/>
            <Tax Ref="26"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="18"/>
            <TaxSummary Ref="7"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="9600" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="9600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="9600" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11400" TotalTaxes="1800"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="81">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="169">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="13"/>
            <Tax Ref="27"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="18"/>
            <TaxSummary Ref="22"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH CNN REQUIRES ACCOMPANYING SAME CABIN ADT" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7200" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7200" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7200" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="8780" TotalTaxes="1580"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INS">
            <FareComponent Ref="84">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="219">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="13"/>
            <TaxSummary Ref="18"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7200" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7200" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7200" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="8560" TotalTaxes="1360"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
          </PassengerInfo>
          <AncillaryFeeGroup Message="AIR EXTRAS NOT APPLICABLE OR ARE UNKNOWN FOR THIS ITINERARY"/>
          <TotalFare BaseFareAmount="33600" BaseFareCurrency="RUB" ConstructionAmount="33600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="33600" EquivalentCurrency="RUB" TotalPrice="40140" TotalTaxes="6540"/>
          <ValidatingCarrier Ref="1"/>
        </Fare>
      </PricingInformation>
      <PricingInformation FlexibleFare="3" PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="Y7 Y7" LastTicketDate="2020-01-23" VITA="true" ValidatingCarrierCode="HR">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="102">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="63">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="13"/>
            <Tax Ref="34"/>
            <Tax Ref="26"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="18"/>
            <TaxSummary Ref="7"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="9600" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="9600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="9600" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11400" TotalTaxes="1800"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="81">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="169">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="13"/>
            <Tax Ref="27"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="18"/>
            <TaxSummary Ref="22"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH CNN REQUIRES ACCOMPANYING SAME CABIN ADT" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7200" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7200" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7200" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="8780" TotalTaxes="1580"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
          </PassengerInfo>
          <PassengerInfo NonRefundable="false" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="139">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="156">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="6"/>
            </BaggageInformation>
          </PassengerInfo>
          <AncillaryFeeGroup Message="AIR EXTRAS NOT APPLICABLE OR ARE UNKNOWN FOR THIS ITINERARY"/>
          <TotalFare BaseFareAmount="26400" BaseFareCurrency="RUB" ConstructionAmount="26400" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="26400" EquivalentCurrency="RUB" TotalPrice="31580" TotalTaxes="5180"/>
          <ValidatingCarrier Ref="1"/>
        </Fare>
      </PricingInformation>
      <PricingInformation FlexibleFare="4" PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="Y7 Y7" LastTicketDate="2020-01-23" VITA="true" ValidatingCarrierCode="HR">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="52">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="45">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="13"/>
            <Tax Ref="34"/>
            <Tax Ref="26"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="18"/>
            <TaxSummary Ref="7"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="IF NO SHOW NON-REFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="13600" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="13600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="13600" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="15400" TotalTaxes="1800"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="195">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="67">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="13"/>
            <Tax Ref="27"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="18"/>
            <TaxSummary Ref="22"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="IF NO SHOW NON-REFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH CNN REQUIRES ACCOMPANYING SAME CABIN ADT" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="10200" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="10200" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="10200" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11780" TotalTaxes="1580"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="false" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="153">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="44">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="IF NO SHOW NON-REFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="20"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="AIR EXTRAS NOT APPLICABLE OR ARE UNKNOWN FOR THIS ITINERARY"/>
          <TotalFare BaseFareAmount="37400" BaseFareCurrency="RUB" ConstructionAmount="37400" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="37400" EquivalentCurrency="RUB" TotalPrice="42580" TotalTaxes="5180"/>
          <ValidatingCarrier Ref="1"/>
        </Fare>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="14803.125"/>
    </Itinerary>
    <Itinerary ID="2" PricingSource="ADVJR1">
      <Leg Ref="43"/>
      <Leg Ref="40"/>
      <PricingInformation BrandsOnAnyMarket="true" PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="S7 S7" LastTicketDate="2020-01-24" VITA="true" ValidatingCarrierCode="S7">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="201">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="8">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <Tax Ref="35"/>
            <Tax Ref="17"/>
            <Tax Ref="5"/>
            <Tax Ref="28"/>
            <Tax Ref="34"/>
            <Tax Ref="26"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="9"/>
            <TaxSummary Ref="7"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="10000" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="10000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="10000" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="13924" TotalTaxes="3924"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="66">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="53">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <Tax Ref="35"/>
            <Tax Ref="17"/>
            <Tax Ref="5"/>
            <Tax Ref="28"/>
            <Tax Ref="27"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="9"/>
            <TaxSummary Ref="22"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7500" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7500" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11204" TotalTaxes="3704"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="229">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="183">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="Before" ConditionsApply="true" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="0" Applicability="After" ConditionsApply="true" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="ADDTL AIR EXTRAS APPLY - REFINE REQUEST">
            <AncillaryFee Code="BG" Name="BAGGAGE">
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="1" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN HOLD" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="2" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN CABIN UP TO 8 KG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="3" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="4" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="5" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="6" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="7" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="8" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="9" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="10" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="11" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="12" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="13" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="14" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="15" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="16" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="17" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="18" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="19" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="20" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="21" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="22" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="23" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="24" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="25" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="26" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="27" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="28" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="29" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="30" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="31" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="32" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="33" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="34" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="35" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="36" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="37" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="38" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="39" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="40" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="41" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="42" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="43" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="44" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="45" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="46" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
            </AncillaryFee>
            <OrderStandardBag>
              <PassengerBags Code="ADT">
                <BaggageSequenceOrder BaggageRef="3" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="5" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="7" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="27" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="29" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="31" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="CNN">
                <BaggageSequenceOrder BaggageRef="4" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="6" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="8" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="28" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="30" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="32" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="INF"/>
            </OrderStandardBag>
          </AncillaryFeeGroup>
          <TotalFare BaseFareAmount="27500" BaseFareCurrency="RUB" ConstructionAmount="27500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="27500" EquivalentCurrency="RUB" TotalPrice="39052" TotalTaxes="11552"/>
          <ValidatingCarrier Ref="3"/>
          <ValidatingCarrier Ref="10"/>
        </Fare>
      </PricingInformation>
      <PricingInformation BrandsOnAnyMarket="true" FlexibleFare="2" PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="S7 S7" LastTicketDate="2020-01-24" VITA="true" ValidatingCarrierCode="S7">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="201">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="8">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <Tax Ref="35"/>
            <Tax Ref="17"/>
            <Tax Ref="5"/>
            <Tax Ref="28"/>
            <Tax Ref="34"/>
            <Tax Ref="26"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="9"/>
            <TaxSummary Ref="7"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="10000" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="10000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="10000" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="13924" TotalTaxes="3924"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="66">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="53">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <Tax Ref="35"/>
            <Tax Ref="17"/>
            <Tax Ref="5"/>
            <Tax Ref="28"/>
            <Tax Ref="27"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="9"/>
            <TaxSummary Ref="22"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7500" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7500" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11204" TotalTaxes="3704"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INS">
            <FareComponent Ref="16">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="78">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <Tax Ref="35"/>
            <Tax Ref="17"/>
            <Tax Ref="5"/>
            <Tax Ref="28"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="9"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7500" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7500" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="10984" TotalTaxes="3484"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
          </PassengerInfo>
          <AncillaryFeeGroup Message="ADDTL AIR EXTRAS APPLY - REFINE REQUEST">
            <AncillaryFee Code="BG" Name="BAGGAGE">
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="1" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN HOLD" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="2" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN CABIN UP TO 8 KG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="3" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="4" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="5" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="6" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="7" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="8" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="9" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="10" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="11" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="12" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="13" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="14" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="15" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="16" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="17" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="18" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="19" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="20" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="21" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="22" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="23" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="24" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="25" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="26" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="27" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="28" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="29" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="30" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="31" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="32" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="33" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="34" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="35" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="36" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="37" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="38" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="39" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="40" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="41" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="42" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="43" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="44" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="45" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="46" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
            </AncillaryFee>
            <OrderStandardBag>
              <PassengerBags Code="ADT">
                <BaggageSequenceOrder BaggageRef="3" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="5" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="7" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="27" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="29" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="31" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="CNN">
                <BaggageSequenceOrder BaggageRef="4" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="6" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="8" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="28" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="30" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="32" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="INS"/>
            </OrderStandardBag>
          </AncillaryFeeGroup>
          <TotalFare BaseFareAmount="35000" BaseFareCurrency="RUB" ConstructionAmount="35000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="35000" EquivalentCurrency="RUB" TotalPrice="50036" TotalTaxes="15036"/>
          <ValidatingCarrier Ref="3"/>
          <ValidatingCarrier Ref="10"/>
        </Fare>
      </PricingInformation>
      <PricingInformation BrandsOnAnyMarket="true" FlexibleFare="3" PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="S7 S7" LastTicketDate="2020-01-24" VITA="true" ValidatingCarrierCode="S7">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="201">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="8">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <Tax Ref="35"/>
            <Tax Ref="17"/>
            <Tax Ref="5"/>
            <Tax Ref="28"/>
            <Tax Ref="34"/>
            <Tax Ref="26"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="9"/>
            <TaxSummary Ref="7"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="10000" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="10000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="10000" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="13924" TotalTaxes="3924"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="66">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="53">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <Tax Ref="35"/>
            <Tax Ref="17"/>
            <Tax Ref="5"/>
            <Tax Ref="28"/>
            <Tax Ref="27"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="9"/>
            <TaxSummary Ref="22"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7500" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7500" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11204" TotalTaxes="3704"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="229">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="183">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="38"/>
              <BrandFeature Ref="62"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="43"/>
              <BrandFeature Ref="89"/>
              <BrandFeature Ref="27"/>
              <BrandFeature Ref="97"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="102"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="10"/>
            </BaggageInformation>
          </PassengerInfo>
          <AncillaryFeeGroup Message="ADDTL AIR EXTRAS APPLY - REFINE REQUEST">
            <AncillaryFee Code="BG" Name="BAGGAGE">
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="1" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN HOLD" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="2" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN CABIN UP TO 8 KG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="3" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="4" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="5" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="6" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="7" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="8" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="9" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="10" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="11" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="12" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="13" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="14" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="15" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="16" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="17" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="18" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="19" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="20" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="21" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="22" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="23" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="24" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="25" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="26" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="27" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="28" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="29" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="30" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="31" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="32" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="33" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="34" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="35" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="36" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="37" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="38" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="39" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="40" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="41" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="42" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="43" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="44" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="45" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="46" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
            </AncillaryFee>
            <OrderStandardBag>
              <PassengerBags Code="ADT">
                <BaggageSequenceOrder BaggageRef="3" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="5" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="7" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="27" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="29" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="31" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="CNN">
                <BaggageSequenceOrder BaggageRef="4" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="6" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="8" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="28" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="30" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="32" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="INF"/>
            </OrderStandardBag>
          </AncillaryFeeGroup>
          <TotalFare BaseFareAmount="27500" BaseFareCurrency="RUB" ConstructionAmount="27500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="27500" EquivalentCurrency="RUB" TotalPrice="39052" TotalTaxes="11552"/>
          <ValidatingCarrier Ref="3"/>
          <ValidatingCarrier Ref="10"/>
        </Fare>
      </PricingInformation>
      <PricingInformation BrandsOnAnyMarket="true" FlexibleFare="4" PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="S7 S7" LastTicketDate="2020-01-24" VITA="true" ValidatingCarrierCode="S7">
          <PassengerInfo NonRefundable="false" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="203">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="37"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="112"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="78"/>
              <BrandFeature Ref="12"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="225">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="37"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="112"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="78"/>
              <BrandFeature Ref="12"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <Tax Ref="35"/>
            <Tax Ref="17"/>
            <Tax Ref="5"/>
            <Tax Ref="28"/>
            <Tax Ref="34"/>
            <Tax Ref="26"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="9"/>
            <TaxSummary Ref="7"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="12700" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="12700" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="12700" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="16624" TotalTaxes="3924"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="21"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="21"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="5000" Applicability="Before" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="5000" Applicability="After" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="false" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="152">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="37"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="112"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="78"/>
              <BrandFeature Ref="12"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="187">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="37"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="112"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="78"/>
              <BrandFeature Ref="12"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <Tax Ref="35"/>
            <Tax Ref="17"/>
            <Tax Ref="5"/>
            <Tax Ref="28"/>
            <Tax Ref="27"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="8"/>
            <TaxSummary Ref="9"/>
            <TaxSummary Ref="22"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="9525" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="9525" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="9525" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="13229" TotalTaxes="3704"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="21"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="21"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="5000" Applicability="Before" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="5000" Applicability="After" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="false" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="32">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="37"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="112"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="78"/>
              <BrandFeature Ref="12"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <FareComponent Ref="130">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="37"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="116"/>
              <BrandFeature Ref="112"/>
              <BrandFeature Ref="46"/>
              <BrandFeature Ref="78"/>
              <BrandFeature Ref="12"/>
              <BrandFeature Ref="87"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="32"/>
              <BrandFeature Ref="64"/>
              <BrandFeature Ref="9"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="48"/>
              <BrandFeature Ref="90"/>
              <BrandFeature Ref="7"/>
              <BrandFeature Ref="86"/>
              <BrandFeature Ref="77"/>
              <BrandFeature Ref="26"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="18"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="18"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="Before" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="0" Applicability="After" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="ADDTL AIR EXTRAS APPLY - REFINE REQUEST">
            <AncillaryFee Code="BG" Name="BAGGAGE">
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="1" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN HOLD" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="2" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN CABIN UP TO 8 KG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="3" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="4" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="5" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="6" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="7" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="8" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="9" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="10" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="11" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="12" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="13" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="14" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="15" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="16" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="17" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="18" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="19" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="20" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="21" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="22" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="23" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="24" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="25" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="26" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="27" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="28" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="29" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="30" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="31" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="32" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="33" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="34" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="35" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="36" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="37" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="38" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="39" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="40" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="41" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="42" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="43" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="44" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="45" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="46" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
            </AncillaryFee>
            <OrderStandardBag>
              <PassengerBags Code="ADT">
                <BaggageSequenceOrder BaggageRef="3" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="5" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="7" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="27" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="29" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="31" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="CNN">
                <BaggageSequenceOrder BaggageRef="4" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="6" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="8" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="28" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="30" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="32" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="INF"/>
            </OrderStandardBag>
          </AncillaryFeeGroup>
          <TotalFare BaseFareAmount="34925" BaseFareCurrency="RUB" ConstructionAmount="34925" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="34925" EquivalentCurrency="RUB" TotalPrice="46477" TotalTaxes="11552"/>
          <ValidatingCarrier Ref="3"/>
          <ValidatingCarrier Ref="10"/>
        </Fare>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="27067.076"/>
    </Itinerary>
    <!--Другие варианты перелетов-->
  </ItineraryGroup>
  <!--Другие маршруты-->
</GroupedItineraryResponse>


Копировать
<OTA_AirLowFareSearchRQ ResponseType="OTA" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true">
    <CabinPref Cabin="Economy" PreferLevel="Preferred"/>
    <TPA_Extensions>
      <LongConnectTime Enable="true"/>
      <LongConnectPoints Max="3" Min="1"/>
      <KeepSameCabin Enabled="true"/>
      <ExcludeCallDirectCarriers Enabled="true"/>
      <DiversityParameters AdditionalNonStopsPercentage="100"/>
    </TPA_Extensions>
    <AncillaryFees Enable="true">
      <AncillaryFeeGroup Code="BG"/>
    </AncillaryFees>
    <Baggage Description="true" RequestType="A"/>
  </TravelPreferences>
  <TravelerInfoSummary>
    <SeatsRequested>3</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="2">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="CNN" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="INF" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
    </AirTravelerAvail>
    <PriceRequestInformation>
      <TPA_Extensions>
        <BrandedFareIndicators ReturnBrandAncillaries="true" SingleBrandedFare="true"/>
      </TPA_Extensions>
    </PriceRequestInformation>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
    <MultiTicket DisplayPolicy="SOW"/>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<OTA_AirLowFareSearchRS AvailableItinCount="0" BrandedOneWayItinCount="0" DepartedItinCount="0" PricedItinCount="295" SimpleOneWayItinCount="72" SoldOutItinCount="0" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Success/>
  <Warnings>
    <Warning Code="TRANSACTIONID" MessageClass="I" ShortText="5239037525504901141" Type="WORKERTHREAD"/>
    <Warning Code="ASEPT2LAPP00341.IDM.SGDCPROD.SABRE.COM" MessageClass="I" ShortText="27038" Type="SERVER"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="15936" Type="DRE"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="24467" Type="DEFAULT"/>
  </Warnings>
  <BrandFeatures>
    <BrandFeature Application="F" CommercialName="SEAT SELECTION DURING CHECK IN" Id="1" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="C" CommercialName="SEAT RESERVATION" Id="2" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="C" CommercialName="BASIC SEAT" Id="3" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="F" CommercialName="BASIC SEAT" Id="4" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="C" CommercialName="SEAT SELECTION DURING CHECK IN" Id="5" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <!--Другие услуги-->
  </BrandFeatures>
  <PricedItineraries>
    <PricedItinerary SequenceNumber="1">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="267"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-08T07:20:00" DepartureDateTime="2020-09-08T05:00:00" ElapsedTime="140" FlightNumber="580" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="580"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="23300" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="2"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6000" CurrencyCode="RUB"/>
              <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8200" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="CNN" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="4700" CurrencyCode="RUB"/>
              <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="6900" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="INF" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="0" CurrencyCode="RUB"/>
              <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <TotalFare Amount="0" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="4"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="8"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <AncillaryFeeGroups>
            <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
            </AncillaryFeeGroup>
          </AncillaryFeeGroups>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="15477.9"/>
      </TPA_Extensions>
    </PricedItinerary>
    <PricedItinerary SequenceNumber="2">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="130">
            <FlightSegment ArrivalDateTime="2020-09-01T04:05:00" DepartureDateTime="2020-09-01T01:55:00" ElapsedTime="130" FlightNumber="579" ResBookDesigCode="V" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="579"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-08T07:20:00" DepartureDateTime="2020-09-08T05:00:00" ElapsedTime="140" FlightNumber="580" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="580"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="18075" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="18075" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="18075" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="24675" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="2"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="V" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">VLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6500" CurrencyCode="RUB"/>
              <FareConstruction Amount="6500" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6500" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8700" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 3100UT MOW Q400 2600RUB6500END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>V</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="9"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="CNN" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="V" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">VLTRT/CH25</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="5075" CurrencyCode="RUB"/>
              <FareConstruction Amount="5075" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="5075" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="7275" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2325UT MOW Q400 1950RUB5075END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>V</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="9"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="INF" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="V" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">VLTRT/IN</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="0" CurrencyCode="RUB"/>
              <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <TotalFare Amount="0" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="7"/>
                    <BrandFeatureRef FeatureId="6"/>
                    <BrandFeatureRef FeatureId="22"/>
                    <BrandFeatureRef FeatureId="65"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="47"/>
                    <BrandFeatureRef FeatureId="57"/>
                    <BrandFeatureRef FeatureId="52"/>
                    <BrandFeatureRef FeatureId="54"/>
                    <BrandFeatureRef FeatureId="53"/>
                    <BrandFeatureRef FeatureId="71"/>
                    <BrandFeatureRef FeatureId="62"/>
                    <BrandFeatureRef FeatureId="58"/>
                    <BrandFeatureRef FeatureId="51"/>
                    <BrandFeatureRef FeatureId="63"/>
                    <BrandFeatureRef FeatureId="66"/>
                    <BrandFeatureRef FeatureId="79"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>V</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="9"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>V</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="9"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="8"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <AncillaryFeeGroups>
            <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
            </AncillaryFeeGroup>
          </AncillaryFeeGroups>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="15627.5"/>
      </TPA_Extensions>
    </PricedItinerary>
    <!--Другие варианты перелетов-->
  </PricedItineraries>
  <OneWayItineraries>
    <SimpleOneWayItineraries RPH="1">
      <PricedItinerary SequenceNumber="1">
        <AirItinerary DirectionInd="OneWay">
          <OriginDestinationOptions>
            <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="135">
              <FlightSegment ArrivalDateTime="2020-09-01T12:45:00" DepartureDateTime="2020-09-01T10:30:00" ElapsedTime="135" FlightNumber="473" ResBookDesigCode="Q" StopQuantity="0">
                <DepartureAirport LocationCode="VKO" TerminalID="A"/>
                <ArrivalAirport LocationCode="AER"/>
                <OperatingAirline Code="R3" FlightNumber="473"/>
                <Equipment AirEquipType="73H"/>
                <MarketingAirline Code="R3"/>
                <MarriageGrp>O</MarriageGrp>
                <DepartureTimeZone GMTOffset="3"/>
                <ArrivalTimeZone GMTOffset="3"/>
                <TPA_Extensions>
                  <eTicket Ind="true"/>
                  <Mileage Amount="847"/>
                </TPA_Extensions>
              </FlightSegment>
            </OriginDestinationOption>
          </OriginDestinationOptions>
        </AirItinerary>
        <AirItineraryPricingInfo FareReturned="true" LastTicketDate="2020-01-22" PricingSource="ADVJR1" PricingSubSource="MIP">
          <ItinTotalFare>
            <BaseFare Amount="10800" CurrencyCode="RUB" DecimalPlaces="0"/>
            <FareConstruction Amount="10800" CurrencyCode="RUB" DecimalPlaces="0"/>
            <EquivFare Amount="10800" CurrencyCode="RUB" DecimalPlaces="0"/>
            <Taxes>
              <Tax Amount="2040" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
            </Taxes>
            <TotalFare Amount="12840" CurrencyCode="RUB" DecimalPlaces="0"/>
          </ItinTotalFare>
          <PTC_FareBreakdowns>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="ADT" Quantity="2"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="Q" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="RBB1" FareComponentFareTariff="304" FareComponentFareType="ER" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="R3">QBBSOW</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="4000" CurrencyCode="RUB"/>
                <FareConstruction Amount="4000" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="4000" CurrencyCode="RUB" DecimalPlaces="0"/>
                <Taxes>
                  <Tax Amount="680" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TaxSummary Amount="680" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TotalTax Amount="680" CurrencyCode="RUB" DecimalPlaces="0"/>
                </Taxes>
                <TotalFare Amount="4680" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="3000" Applicability="Before" Changeable="true" ConditionsApply="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="After" Changeable="false" Type="Exchange"/>
                  <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <Messages>
                    <Message AirlineCode="R3" FailCode="0" Info="NONREF/CHANRESTR/ NO BAG" Type="N"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - R3" Type="W"/>
                    <Message FailCode="0" Info="TCH - R3" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="R3" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="MOW R3 AER4000RUB4000END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>Q</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="9"/>
                    <Cabin Cabin="Y"/>
                    <Meal Code="M"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="CNN" Quantity="1"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="Q" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="RBB1" FareComponentFareTariff="304" FareComponentFareType="ER" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="R3">QBBSOW/CH30</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="2800" CurrencyCode="RUB"/>
                <FareConstruction Amount="2800" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="2800" CurrencyCode="RUB" DecimalPlaces="0"/>
                <Taxes>
                  <Tax Amount="680" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TaxSummary Amount="680" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TotalTax Amount="680" CurrencyCode="RUB" DecimalPlaces="0"/>
                </Taxes>
                <TotalFare Amount="3480" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="3000" Applicability="Before" Changeable="true" ConditionsApply="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="After" Changeable="false" Type="Exchange"/>
                  <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <Messages>
                    <Message AirlineCode="R3" FailCode="0" Info="NONREF/CHANRESTR/ NO BAG" Type="N"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - R3" Type="W"/>
                    <Message FailCode="0" Info="TCH - R3" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="R3" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="MOW R3 AER2800RUB2800END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>Q</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="9"/>
                    <Cabin Cabin="Y"/>
                    <Meal Code="M"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="INF" Quantity="1"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="Q" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="RBB1" FareComponentFareTariff="304" FareComponentFareType="ER" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="R3">QBBSOW/IN00</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="0" CurrencyCode="RUB"/>
                <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                <TotalFare Amount="0" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="3000" Applicability="Before" Changeable="true" ConditionsApply="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="After" Changeable="false" Type="Exchange"/>
                  <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <Messages>
                    <Message AirlineCode="R3" FailCode="0" Info="NONREF/CHANRESTR/ NO BAG" Type="N"/>
                    <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - R3" Type="W"/>
                    <Message FailCode="0" Info="TCH - R3" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="R3" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="MOW R3 AER0RUB0END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>Q</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="9"/>
                    <Cabin Cabin="Y"/>
                    <Meal Code="M"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
          </PTC_FareBreakdowns>
          <FareInfos>
            <FareInfo>
              <FareReference>Q</FareReference>
              <TPA_Extensions>
                <SeatsRemaining BelowMin="false" Number="9"/>
                <Cabin Cabin="Y"/>
                <Meal Code="M"/>
              </TPA_Extensions>
            </FareInfo>
          </FareInfos>
          <TPA_Extensions>
            <DivideInParty Indicator="false"/>
            <AncillaryFeeGroups Message="AIR EXTRAS NOT APPLICABLE OR ARE UNKNOWN FOR THIS ITINERARY"/>
            <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
              <Default Code="R3"/>
            </ValidatingCarrier>
            <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
              <Default Code="R3"/>
            </ValidatingCarrier>
          </TPA_Extensions>
        </AirItineraryPricingInfo>
        <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        <TPA_Extensions>
          <ValidatingCarrier Code="R3"/>
          <DiversitySwapper WeighedPriceAmount="4280"/>
        </TPA_Extensions>
      </PricedItinerary>
      <PricedItinerary SequenceNumber="2">
        <AirItinerary DirectionInd="OneWay">
          <OriginDestinationOptions>
            <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
              <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
                <DepartureAirport LocationCode="VKO" TerminalID="A"/>
                <ArrivalAirport LocationCode="AER"/>
                <OperatingAirline Code="UT" FlightNumber="267"/>
                <Equipment AirEquipType="738"/>
                <MarketingAirline Code="UT"/>
                <MarriageGrp>O</MarriageGrp>
                <DepartureTimeZone GMTOffset="3"/>
                <ArrivalTimeZone GMTOffset="3"/>
                <TPA_Extensions>
                  <eTicket Ind="true"/>
                  <Mileage Amount="847"/>
                </TPA_Extensions>
              </FlightSegment>
            </OriginDestinationOption>
          </OriginDestinationOptions>
        </AirItinerary>
        <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
          <ItinTotalFare>
            <BaseFare Amount="8350" CurrencyCode="RUB" DecimalPlaces="0"/>
            <FareConstruction Amount="8350" CurrencyCode="RUB" DecimalPlaces="0"/>
            <EquivFare Amount="8350" CurrencyCode="RUB" DecimalPlaces="0"/>
            <Taxes>
              <Tax Amount="4800" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
            </Taxes>
            <TotalFare Amount="13150" CurrencyCode="RUB" DecimalPlaces="0"/>
          </ItinTotalFare>
          <PTC_FareBreakdowns>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="ADT" Quantity="2"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT23" FareComponentFareTariff="304" FareComponentFareType="XOL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTOW</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="3000" CurrencyCode="RUB"/>
                <FareConstruction Amount="3000" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="3000" CurrencyCode="RUB" DecimalPlaces="0"/>
                <Taxes>
                  <Tax Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <TaxSummary Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TotalTax Amount="1600" CurrencyCode="RUB" DecimalPlaces="0"/>
                </Taxes>
                <TotalFare Amount="4600" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                  <FareComponents>
                    <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                      <Segment FlightIndex="1" LegIndex="1"/>
                      <BrandFeatureRef FeatureId="7"/>
                      <BrandFeatureRef FeatureId="6"/>
                      <BrandFeatureRef FeatureId="22"/>
                      <BrandFeatureRef FeatureId="65"/>
                      <BrandFeatureRef FeatureId="44"/>
                      <BrandFeatureRef FeatureId="47"/>
                      <BrandFeatureRef FeatureId="57"/>
                      <BrandFeatureRef FeatureId="52"/>
                      <BrandFeatureRef FeatureId="54"/>
                      <BrandFeatureRef FeatureId="53"/>
                      <BrandFeatureRef FeatureId="71"/>
                      <BrandFeatureRef FeatureId="62"/>
                      <BrandFeatureRef FeatureId="58"/>
                      <BrandFeatureRef FeatureId="51"/>
                      <BrandFeatureRef FeatureId="63"/>
                      <BrandFeatureRef FeatureId="66"/>
                      <BrandFeatureRef FeatureId="79"/>
                    </FareComponent>
                  </FareComponents>
                  <Messages>
                    <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - UT" Type="W"/>
                    <Message FailCode="0" Info="GEN - UT" Type="W"/>
                    <Message FailCode="0" Info="TCH - UT" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="UT" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="MOW UT AER Q400 2600RUB3000END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>H</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="4"/>
                    <Cabin Cabin="Y"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="CNN" Quantity="1"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT23" FareComponentFareTariff="304" FareComponentFareType="XOL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTOW/CH25</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="2350" CurrencyCode="RUB"/>
                <FareConstruction Amount="2350" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="2350" CurrencyCode="RUB" DecimalPlaces="0"/>
                <Taxes>
                  <Tax Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <TaxSummary Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TotalTax Amount="1600" CurrencyCode="RUB" DecimalPlaces="0"/>
                </Taxes>
                <TotalFare Amount="3950" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                  <FareComponents>
                    <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                      <Segment FlightIndex="1" LegIndex="1"/>
                      <BrandFeatureRef FeatureId="7"/>
                      <BrandFeatureRef FeatureId="6"/>
                      <BrandFeatureRef FeatureId="22"/>
                      <BrandFeatureRef FeatureId="65"/>
                      <BrandFeatureRef FeatureId="44"/>
                      <BrandFeatureRef FeatureId="47"/>
                      <BrandFeatureRef FeatureId="57"/>
                      <BrandFeatureRef FeatureId="52"/>
                      <BrandFeatureRef FeatureId="54"/>
                      <BrandFeatureRef FeatureId="53"/>
                      <BrandFeatureRef FeatureId="71"/>
                      <BrandFeatureRef FeatureId="62"/>
                      <BrandFeatureRef FeatureId="58"/>
                      <BrandFeatureRef FeatureId="51"/>
                      <BrandFeatureRef FeatureId="63"/>
                      <BrandFeatureRef FeatureId="66"/>
                      <BrandFeatureRef FeatureId="79"/>
                    </FareComponent>
                  </FareComponents>
                  <Messages>
                    <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - UT" Type="W"/>
                    <Message FailCode="0" Info="GEN - UT" Type="W"/>
                    <Message FailCode="0" Info="TCH - UT" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="UT" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="MOW UT AER Q400 1950RUB2350END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>H</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="4"/>
                    <Cabin Cabin="Y"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="INF" Quantity="1"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT23" FareComponentFareTariff="304" FareComponentFareType="XOL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTOW/IN</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="0" CurrencyCode="RUB"/>
                <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                <TotalFare Amount="0" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <FareComponents>
                    <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                      <Segment FlightIndex="1" LegIndex="1"/>
                      <BrandFeatureRef FeatureId="7"/>
                      <BrandFeatureRef FeatureId="6"/>
                      <BrandFeatureRef FeatureId="22"/>
                      <BrandFeatureRef FeatureId="65"/>
                      <BrandFeatureRef FeatureId="44"/>
                      <BrandFeatureRef FeatureId="47"/>
                      <BrandFeatureRef FeatureId="57"/>
                      <BrandFeatureRef FeatureId="52"/>
                      <BrandFeatureRef FeatureId="54"/>
                      <BrandFeatureRef FeatureId="53"/>
                      <BrandFeatureRef FeatureId="71"/>
                      <BrandFeatureRef FeatureId="62"/>
                      <BrandFeatureRef FeatureId="58"/>
                      <BrandFeatureRef FeatureId="51"/>
                      <BrandFeatureRef FeatureId="63"/>
                      <BrandFeatureRef FeatureId="66"/>
                      <BrandFeatureRef FeatureId="79"/>
                    </FareComponent>
                  </FareComponents>
                  <Messages>
                    <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                    <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - UT" Type="W"/>
                    <Message FailCode="0" Info="GEN - UT" Type="W"/>
                    <Message FailCode="0" Info="TCH - UT" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="UT" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="MOW UT AER0RUB0END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>H</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="4"/>
                    <Cabin Cabin="Y"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
          </PTC_FareBreakdowns>
          <FareInfos>
            <FareInfo>
              <FareReference>H</FareReference>
              <TPA_Extensions>
                <SeatsRemaining BelowMin="false" Number="4"/>
                <Cabin Cabin="Y"/>
              </TPA_Extensions>
            </FareInfo>
          </FareInfos>
          <TPA_Extensions>
            <DivideInParty Indicator="false"/>
            <AncillaryFeeGroups>
              <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              </AncillaryFeeGroup>
            </AncillaryFeeGroups>
            <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
              <Default Code="UT"/>
            </ValidatingCarrier>
            <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
              <Default Code="UT"/>
            </ValidatingCarrier>
            <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
              <Default Code="UT"/>
            </ValidatingCarrier>
          </TPA_Extensions>
        </AirItineraryPricingInfo>
        <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        <TPA_Extensions>
          <ValidatingCarrier Code="UT"/>
          <DiversitySwapper WeighedPriceAmount="6762.86"/>
        </TPA_Extensions>
      </PricedItinerary>
      <!--Другие варианты перелетов-->
    </SimpleOneWayItineraries>
    <SimpleOneWayItineraries RPH="2">
      <PricedItinerary SequenceNumber="1">
        <AirItinerary DirectionInd="OneWay">
          <OriginDestinationOptions>
            <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
              <FlightSegment ArrivalDateTime="2020-09-08T07:20:00" DepartureDateTime="2020-09-08T05:00:00" ElapsedTime="140" FlightNumber="580" ResBookDesigCode="H" StopQuantity="0">
                <DepartureAirport LocationCode="AER"/>
                <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
                <OperatingAirline Code="UT" FlightNumber="580"/>
                <Equipment AirEquipType="738"/>
                <MarketingAirline Code="UT"/>
                <MarriageGrp>O</MarriageGrp>
                <DepartureTimeZone GMTOffset="3"/>
                <ArrivalTimeZone GMTOffset="3"/>
                <TPA_Extensions>
                  <eTicket Ind="true"/>
                  <Mileage Amount="847"/>
                </TPA_Extensions>
              </FlightSegment>
            </OriginDestinationOption>
          </OriginDestinationOptions>
        </AirItinerary>
        <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
          <ItinTotalFare>
            <BaseFare Amount="8350" CurrencyCode="RUB" DecimalPlaces="0"/>
            <FareConstruction Amount="8350" CurrencyCode="RUB" DecimalPlaces="0"/>
            <EquivFare Amount="8350" CurrencyCode="RUB" DecimalPlaces="0"/>
            <Taxes>
              <Tax Amount="4800" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
            </Taxes>
            <TotalFare Amount="13150" CurrencyCode="RUB" DecimalPlaces="0"/>
          </ItinTotalFare>
          <PTC_FareBreakdowns>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="ADT" Quantity="2"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="FROM" FareComponentEndAirport="VKO" FareComponentFareRule="UT23" FareComponentFareTariff="304" FareComponentFareType="XOL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTOW</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="3000" CurrencyCode="RUB"/>
                <FareConstruction Amount="3000" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="3000" CurrencyCode="RUB" DecimalPlaces="0"/>
                <Taxes>
                  <Tax Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <TaxSummary Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TotalTax Amount="1600" CurrencyCode="RUB" DecimalPlaces="0"/>
                </Taxes>
                <TotalFare Amount="4600" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                  <FareComponents>
                    <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                      <Segment FlightIndex="1" LegIndex="1"/>
                      <BrandFeatureRef FeatureId="7"/>
                      <BrandFeatureRef FeatureId="6"/>
                      <BrandFeatureRef FeatureId="22"/>
                      <BrandFeatureRef FeatureId="65"/>
                      <BrandFeatureRef FeatureId="44"/>
                      <BrandFeatureRef FeatureId="47"/>
                      <BrandFeatureRef FeatureId="57"/>
                      <BrandFeatureRef FeatureId="52"/>
                      <BrandFeatureRef FeatureId="54"/>
                      <BrandFeatureRef FeatureId="53"/>
                      <BrandFeatureRef FeatureId="71"/>
                      <BrandFeatureRef FeatureId="62"/>
                      <BrandFeatureRef FeatureId="58"/>
                      <BrandFeatureRef FeatureId="51"/>
                      <BrandFeatureRef FeatureId="63"/>
                      <BrandFeatureRef FeatureId="66"/>
                      <BrandFeatureRef FeatureId="79"/>
                    </FareComponent>
                  </FareComponents>
                  <Messages>
                    <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - UT" Type="W"/>
                    <Message FailCode="0" Info="GEN - UT" Type="W"/>
                    <Message FailCode="0" Info="TCH - UT" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="UT" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="AER UT MOW Q400 2600RUB3000END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>H</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="8"/>
                    <Cabin Cabin="Y"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="CNN" Quantity="1"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="FROM" FareComponentEndAirport="VKO" FareComponentFareRule="UT23" FareComponentFareTariff="304" FareComponentFareType="XOL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTOW/CH25</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="2350" CurrencyCode="RUB"/>
                <FareConstruction Amount="2350" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="2350" CurrencyCode="RUB" DecimalPlaces="0"/>
                <Taxes>
                  <Tax Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <TaxSummary Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TotalTax Amount="1600" CurrencyCode="RUB" DecimalPlaces="0"/>
                </Taxes>
                <TotalFare Amount="3950" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                  <FareComponents>
                    <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                      <Segment FlightIndex="1" LegIndex="1"/>
                      <BrandFeatureRef FeatureId="7"/>
                      <BrandFeatureRef FeatureId="6"/>
                      <BrandFeatureRef FeatureId="22"/>
                      <BrandFeatureRef FeatureId="65"/>
                      <BrandFeatureRef FeatureId="44"/>
                      <BrandFeatureRef FeatureId="47"/>
                      <BrandFeatureRef FeatureId="57"/>
                      <BrandFeatureRef FeatureId="52"/>
                      <BrandFeatureRef FeatureId="54"/>
                      <BrandFeatureRef FeatureId="53"/>
                      <BrandFeatureRef FeatureId="71"/>
                      <BrandFeatureRef FeatureId="62"/>
                      <BrandFeatureRef FeatureId="58"/>
                      <BrandFeatureRef FeatureId="51"/>
                      <BrandFeatureRef FeatureId="63"/>
                      <BrandFeatureRef FeatureId="66"/>
                      <BrandFeatureRef FeatureId="79"/>
                    </FareComponent>
                  </FareComponents>
                  <Messages>
                    <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - UT" Type="W"/>
                    <Message FailCode="0" Info="GEN - UT" Type="W"/>
                    <Message FailCode="0" Info="TCH - UT" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="UT" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="AER UT MOW Q400 1950RUB2350END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>H</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="8"/>
                    <Cabin Cabin="Y"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="INF" Quantity="1"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="FROM" FareComponentEndAirport="VKO" FareComponentFareRule="UT23" FareComponentFareTariff="304" FareComponentFareType="XOL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTOW/IN</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="0" CurrencyCode="RUB"/>
                <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                <TotalFare Amount="0" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <FareComponents>
                    <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                      <Segment FlightIndex="1" LegIndex="1"/>
                      <BrandFeatureRef FeatureId="7"/>
                      <BrandFeatureRef FeatureId="6"/>
                      <BrandFeatureRef FeatureId="22"/>
                      <BrandFeatureRef FeatureId="65"/>
                      <BrandFeatureRef FeatureId="44"/>
                      <BrandFeatureRef FeatureId="47"/>
                      <BrandFeatureRef FeatureId="57"/>
                      <BrandFeatureRef FeatureId="52"/>
                      <BrandFeatureRef FeatureId="54"/>
                      <BrandFeatureRef FeatureId="53"/>
                      <BrandFeatureRef FeatureId="71"/>
                      <BrandFeatureRef FeatureId="62"/>
                      <BrandFeatureRef FeatureId="58"/>
                      <BrandFeatureRef FeatureId="51"/>
                      <BrandFeatureRef FeatureId="63"/>
                      <BrandFeatureRef FeatureId="66"/>
                      <BrandFeatureRef FeatureId="79"/>
                    </FareComponent>
                  </FareComponents>
                  <Messages>
                    <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                    <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - UT" Type="W"/>
                    <Message FailCode="0" Info="GEN - UT" Type="W"/>
                    <Message FailCode="0" Info="TCH - UT" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="UT" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="AER UT MOW0RUB0END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>H</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="8"/>
                    <Cabin Cabin="Y"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
          </PTC_FareBreakdowns>
          <FareInfos>
            <FareInfo>
              <FareReference>H</FareReference>
              <TPA_Extensions>
                <SeatsRemaining BelowMin="false" Number="8"/>
                <Cabin Cabin="Y"/>
              </TPA_Extensions>
            </FareInfo>
          </FareInfos>
          <TPA_Extensions>
            <DivideInParty Indicator="false"/>
            <AncillaryFeeGroups>
              <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="1" OriginAirport="AER" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="1" OriginAirport="AER" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              </AncillaryFeeGroup>
            </AncillaryFeeGroups>
            <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
              <Default Code="UT"/>
            </ValidatingCarrier>
            <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
              <Default Code="UT"/>
            </ValidatingCarrier>
            <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
              <Default Code="UT"/>
            </ValidatingCarrier>
          </TPA_Extensions>
        </AirItineraryPricingInfo>
        <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        <TPA_Extensions>
          <ValidatingCarrier Code="UT"/>
          <DiversitySwapper WeighedPriceAmount="6762.86"/>
        </TPA_Extensions>
      </PricedItinerary>
      <PricedItinerary SequenceNumber="2">
        <AirItinerary DirectionInd="OneWay">
          <OriginDestinationOptions>
            <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="130">
              <FlightSegment ArrivalDateTime="2020-09-08T15:20:00" DepartureDateTime="2020-09-08T13:10:00" ElapsedTime="130" FlightNumber="250" ResBookDesigCode="V" StopQuantity="0">
                <DepartureAirport LocationCode="AER"/>
                <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
                <OperatingAirline Code="UT" FlightNumber="250"/>
                <Equipment AirEquipType="738"/>
                <MarketingAirline Code="UT"/>
                <MarriageGrp>O</MarriageGrp>
                <DepartureTimeZone GMTOffset="3"/>
                <ArrivalTimeZone GMTOffset="3"/>
                <TPA_Extensions>
                  <eTicket Ind="true"/>
                  <Mileage Amount="847"/>
                </TPA_Extensions>
              </FlightSegment>
            </OriginDestinationOption>
          </OriginDestinationOptions>
        </AirItinerary>
        <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" LastTicketDate="2020-02-01" PricingSource="ADVJR1" PricingSubSource="MIP">
          <ItinTotalFare>
            <BaseFare Amount="9725" CurrencyCode="RUB" DecimalPlaces="0"/>
            <FareConstruction Amount="9725" CurrencyCode="RUB" DecimalPlaces="0"/>
            <EquivFare Amount="9725" CurrencyCode="RUB" DecimalPlaces="0"/>
            <Taxes>
              <Tax Amount="4800" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
            </Taxes>
            <TotalFare Amount="14525" CurrencyCode="RUB" DecimalPlaces="0"/>
          </ItinTotalFare>
          <PTC_FareBreakdowns>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="ADT" Quantity="2"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="V" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="FROM" FareComponentEndAirport="VKO" FareComponentFareRule="UT23" FareComponentFareTariff="304" FareComponentFareType="XOL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">VLTOW</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="3500" CurrencyCode="RUB"/>
                <FareConstruction Amount="3500" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="3500" CurrencyCode="RUB" DecimalPlaces="0"/>
                <Taxes>
                  <Tax Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <TaxSummary Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TotalTax Amount="1600" CurrencyCode="RUB" DecimalPlaces="0"/>
                </Taxes>
                <TotalFare Amount="5100" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                  <FareComponents>
                    <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                      <Segment FlightIndex="1" LegIndex="1"/>
                      <BrandFeatureRef FeatureId="7"/>
                      <BrandFeatureRef FeatureId="6"/>
                      <BrandFeatureRef FeatureId="22"/>
                      <BrandFeatureRef FeatureId="65"/>
                      <BrandFeatureRef FeatureId="44"/>
                      <BrandFeatureRef FeatureId="47"/>
                      <BrandFeatureRef FeatureId="57"/>
                      <BrandFeatureRef FeatureId="52"/>
                      <BrandFeatureRef FeatureId="54"/>
                      <BrandFeatureRef FeatureId="53"/>
                      <BrandFeatureRef FeatureId="71"/>
                      <BrandFeatureRef FeatureId="62"/>
                      <BrandFeatureRef FeatureId="58"/>
                      <BrandFeatureRef FeatureId="51"/>
                      <BrandFeatureRef FeatureId="63"/>
                      <BrandFeatureRef FeatureId="66"/>
                      <BrandFeatureRef FeatureId="79"/>
                    </FareComponent>
                  </FareComponents>
                  <Messages>
                    <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - UT" Type="W"/>
                    <Message FailCode="0" Info="GEN - UT" Type="W"/>
                    <Message FailCode="0" Info="TCH - UT" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="UT" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="AER UT MOW Q400 3100RUB3500END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>V</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="9"/>
                    <Cabin Cabin="Y"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="CNN" Quantity="1"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="V" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="FROM" FareComponentEndAirport="VKO" FareComponentFareRule="UT23" FareComponentFareTariff="304" FareComponentFareType="XOL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">VLTOW/CH25</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="2725" CurrencyCode="RUB"/>
                <FareConstruction Amount="2725" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="2725" CurrencyCode="RUB" DecimalPlaces="0"/>
                <Taxes>
                  <Tax Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                  <TaxSummary Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                  <TotalTax Amount="1600" CurrencyCode="RUB" DecimalPlaces="0"/>
                </Taxes>
                <TotalFare Amount="4325" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                  <FareComponents>
                    <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                      <Segment FlightIndex="1" LegIndex="1"/>
                      <BrandFeatureRef FeatureId="7"/>
                      <BrandFeatureRef FeatureId="6"/>
                      <BrandFeatureRef FeatureId="22"/>
                      <BrandFeatureRef FeatureId="65"/>
                      <BrandFeatureRef FeatureId="44"/>
                      <BrandFeatureRef FeatureId="47"/>
                      <BrandFeatureRef FeatureId="57"/>
                      <BrandFeatureRef FeatureId="52"/>
                      <BrandFeatureRef FeatureId="54"/>
                      <BrandFeatureRef FeatureId="53"/>
                      <BrandFeatureRef FeatureId="71"/>
                      <BrandFeatureRef FeatureId="62"/>
                      <BrandFeatureRef FeatureId="58"/>
                      <BrandFeatureRef FeatureId="51"/>
                      <BrandFeatureRef FeatureId="63"/>
                      <BrandFeatureRef FeatureId="66"/>
                      <BrandFeatureRef FeatureId="79"/>
                    </FareComponent>
                  </FareComponents>
                  <Messages>
                    <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - UT" Type="W"/>
                    <Message FailCode="0" Info="GEN - UT" Type="W"/>
                    <Message FailCode="0" Info="TCH - UT" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="UT" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="AER UT MOW Q400 2325RUB2725END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>V</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="9"/>
                    <Cabin Cabin="Y"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
            <PTC_FareBreakdown>
              <PassengerTypeQuantity Code="INF" Quantity="1"/>
              <FareBasisCodes>
                <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="V" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="FROM" FareComponentEndAirport="VKO" FareComponentFareRule="UT23" FareComponentFareTariff="304" FareComponentFareType="XOL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">VLTOW/IN</FareBasisCode>
              </FareBasisCodes>
              <PassengerFare>
                <BaseFare Amount="0" CurrencyCode="RUB"/>
                <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
                <TotalFare Amount="0" CurrencyCode="RUB"/>
                <PenaltiesInfo>
                  <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
                <TPA_Extensions>
                  <FareComponents>
                    <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                      <Segment FlightIndex="1" LegIndex="1"/>
                      <BrandFeatureRef FeatureId="7"/>
                      <BrandFeatureRef FeatureId="6"/>
                      <BrandFeatureRef FeatureId="22"/>
                      <BrandFeatureRef FeatureId="65"/>
                      <BrandFeatureRef FeatureId="44"/>
                      <BrandFeatureRef FeatureId="47"/>
                      <BrandFeatureRef FeatureId="57"/>
                      <BrandFeatureRef FeatureId="52"/>
                      <BrandFeatureRef FeatureId="54"/>
                      <BrandFeatureRef FeatureId="53"/>
                      <BrandFeatureRef FeatureId="71"/>
                      <BrandFeatureRef FeatureId="62"/>
                      <BrandFeatureRef FeatureId="58"/>
                      <BrandFeatureRef FeatureId="51"/>
                      <BrandFeatureRef FeatureId="63"/>
                      <BrandFeatureRef FeatureId="66"/>
                      <BrandFeatureRef FeatureId="79"/>
                    </FareComponent>
                  </FareComponents>
                  <Messages>
                    <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                    <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                    <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                    <Message FailCode="0" Info="BSP - UT" Type="W"/>
                    <Message FailCode="0" Info="GEN - UT" Type="W"/>
                    <Message FailCode="0" Info="TCH - UT" Type="W"/>
                  </Messages>
                  <BaggageInformationList>
                    <BaggageInformation AirlineCode="UT" ProvisionType="A">
                      <Segment Id="0"/>
                      <Allowance Pieces="0"/>
                    </BaggageInformation>
                  </BaggageInformationList>
                </TPA_Extensions>
              </PassengerFare>
              <Endorsements NonRefundableIndicator="true"/>
              <TPA_Extensions>
                <FareCalcLine Info="AER UT MOW0RUB0END"/>
              </TPA_Extensions>
              <FareInfos>
                <FareInfo>
                  <FareReference>V</FareReference>
                  <TPA_Extensions>
                    <SeatsRemaining BelowMin="false" Number="9"/>
                    <Cabin Cabin="Y"/>
                  </TPA_Extensions>
                </FareInfo>
              </FareInfos>
            </PTC_FareBreakdown>
          </PTC_FareBreakdowns>
          <FareInfos>
            <FareInfo>
              <FareReference>V</FareReference>
              <TPA_Extensions>
                <SeatsRemaining BelowMin="false" Number="9"/>
                <Cabin Cabin="Y"/>
              </TPA_Extensions>
            </FareInfo>
          </FareInfos>
          <TPA_Extensions>
            <DivideInParty Indicator="false"/>
            <AncillaryFeeGroups>
              <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
                <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="1" OriginAirport="AER" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
                <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="1" OriginAirport="AER" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              </AncillaryFeeGroup>
            </AncillaryFeeGroups>
            <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
              <Default Code="UT"/>
            </ValidatingCarrier>
            <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
              <Default Code="UT"/>
            </ValidatingCarrier>
            <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
              <Default Code="UT"/>
            </ValidatingCarrier>
          </TPA_Extensions>
        </AirItineraryPricingInfo>
        <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
        <TPA_Extensions>
          <ValidatingCarrier Code="UT"/>
          <DiversitySwapper WeighedPriceAmount="4357.5"/>
        </TPA_Extensions>
      </PricedItinerary>
      <!--Другие варианты перелетов-->
    </SimpleOneWayItineraries>
  </OneWayItineraries>
</OTA_AirLowFareSearchRS>


Копировать
<OTA_AirLowFareSearchRQ ResponseType="GIR" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true">
    <CabinPref Cabin="Economy" PreferLevel="Preferred"/>
    <TPA_Extensions>
      <LongConnectTime Enable="true"/>
      <LongConnectPoints Max="3" Min="1"/>
      <KeepSameCabin Enabled="true"/>
      <ExcludeCallDirectCarriers Enabled="true"/>
      <DiversityParameters AdditionalNonStopsPercentage="100"/>
    </TPA_Extensions>
    <AncillaryFees Enable="true">
      <AncillaryFeeGroup Code="BG"/>
    </AncillaryFees>
    <Baggage Description="true" RequestType="A"/>
  </TravelPreferences>
  <TravelerInfoSummary>
    <SeatsRequested>3</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="2">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="CNN" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="INF" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
    </AirTravelerAvail>
    <PriceRequestInformation>
      <TPA_Extensions>
        <BrandedFareIndicators ReturnBrandAncillaries="true" SingleBrandedFare="true"/>
      </TPA_Extensions>
    </PriceRequestInformation>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
    <MultiTicket DisplayPolicy="SOW"/>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<GroupedItineraryResponse Version="5.2.0" xmlns="http://webservices.sabre.com/wsdl/sabreXML1.0.00/shopping/GroupedItineraryResponse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Message Code="TRANSACTIONID" Severity="Info" Text="3984273955418494587" Type="WORKERTHREAD"/>
  <Message Code="ASE032LPSPIL7A6.IDM.SGDCPROD.SABRE.COM" Severity="Info" Text="27042" Type="SERVER"/>
  <Message Code="RULEID" Severity="Info" Text="15936" Type="DRE"/>
  <Message Code="RULEID" Severity="Info" Text="24467" Type="DEFAULT"/>
  <Statistics Itineraries="293" OneWay="72"/>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="1" Stops="0" TotalMilesFlown="847">
    <Departure Airport="AER" City="AER" Country="RU" Time="04:25:00+03:00"/>
    <Arrival Airport="VKO" City="MOW" Country="RU" Time="06:40:00+03:00"/>
    <Carrier Disclosure="DP" Marketing="H1" MarketingFlightNumber="1435" Operating="H1" OperatingFlightNumber="1435">
      <Equipment Code="737" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="2" Stops="0" TotalMilesFlown="734">
    <Departure Airport="VKO" City="MOW" Country="RU" Terminal="A" Time="10:50:00+03:00"/>
    <Arrival Airport="KRR" City="KRR" Country="RU" Time="13:00:00+03:00"/>
    <Carrier Marketing="UT" MarketingFlightNumber="575" Operating="UT" OperatingFlightNumber="575">
      <Equipment Code="738" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="3" Stops="0" TotalMilesFlown="873">
    <Departure Airport="AER" City="AER" Country="RU" Time="17:45:00+03:00"/>
    <Arrival Airport="SVO" City="MOW" Country="RU" Terminal="B" Time="20:10:00+03:00"/>
    <Carrier Marketing="SU" MarketingFlightNumber="1125" Operating="SU" OperatingFlightNumber="1125">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="4" Stops="0" TotalMilesFlown="516">
    <Departure Airport="RIX" City="RIX" Country="LV" Time="07:25:00+03:00"/>
    <Arrival Airport="SVO" City="MOW" Country="RU" Terminal="E" Time="09:00:00+03:00"/>
    <Carrier Marketing="BT" MarketingFlightNumber="424" Operating="BT" OperatingFlightNumber="424">
      <Equipment Code="223" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="5" Stops="0" TotalMilesFlown="831">
    <Departure Airport="DME" City="MOW" Country="RU" Time="20:00:00+03:00"/>
    <Arrival Airport="AER" City="AER" Country="RU" Time="22:25:00+03:00"/>
    <Carrier Alliances="OW " Marketing="S7" MarketingFlightNumber="2049" Operating="S7" OperatingFlightNumber="2049">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <!--Другие рейсы-->
  <TaxDesc Amount="190" Code="YQI" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED MISC" ID="1" PublishedAmount="190" PublishedCurrency="RUB" Station="SVO"/>
  <TaxDesc Amount="50" Code="RI4" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC ARRIVAL" ID="2" PublishedAmount="50" PublishedCurrency="RUB" Station="AER"/>
  <TaxDesc Amount="231" Code="LV" Country="LV" Currency="RUB" Description="PASSENGER DEPARTURE AND SECURITY CHARGE" ID="3" PublishedAmount="3.39" PublishedCurrency="EUR" Station="RIX"/>
  <TaxDesc Amount="2924" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="4" PublishedAmount="43.00" PublishedCurrency="EUR" Station="AER"/>
  <TaxDesc Amount="120" Code="RI4" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC ARRIVAL" ID="5" PublishedAmount="120" PublishedCurrency="RUB" Station="SVO"/>
  <!--Другие таксы-->
  <TaxSummaryDesc Amount="304" Code="RI3" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC DEPARTURE" ID="1" PublishedAmount="92" PublishedCurrency="RUB" Station="SVO"/>
  <TaxSummaryDesc Amount="190" Code="YQI" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED MISC" ID="2" PublishedAmount="190" PublishedCurrency="RUB" Station="SVO"/>
  <TaxSummaryDesc Amount="304" Code="RI3" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC DEPARTURE" ID="3" PublishedAmount="184" PublishedCurrency="RUB" Station="SVO"/>
  <TaxSummaryDesc Amount="231" Code="LV" Country="LV" Currency="RUB" Description="PASSENGER DEPARTURE AND SECURITY CHARGE" ID="4" PublishedAmount="3.39" PublishedCurrency="EUR" Station="RIX"/>
  <TaxSummaryDesc Amount="2900" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="5" PublishedAmount="500" PublishedCurrency="RUB" Station="VKO"/>
  <!--Другие таксы-->
  <BrandFeatureDesc Application="C" CommercialName="SECOND EXCESS BAG" ID="1" ServiceGroup="BG" ServiceType="C" SubCode="0CD" Vendor="ATP"/>
  <BrandFeatureDesc Application="F" CommercialName="UPTO50LB 23KG AND62LI 158LCM" ID="2" ServiceGroup="BG" ServiceType="C" SubCode="0GO" Vendor="ATP"/>
  <BrandFeatureDesc Application="C" CommercialName="1ST FISHING EQPMT UPTO 20KG" ID="3" ServiceGroup="BG" ServiceType="C" SubCode="0L1" Vendor="ATP"/>
  <BrandFeatureDesc Application="F" CommercialName="CARRY10KG 22LB 55L X 40W X 25H" ID="4" ServiceGroup="BG" ServiceType="C" SubCode="08A" Vendor="ATP"/>
  <BrandFeatureDesc Application="C" CommercialName="SEAT ASSIGNMENT EXTRA SPACE" ID="5" ServiceGroup="SB" ServiceType="F" SubCode="0BV" Vendor="ATP"/>
  <!--Другие услуги-->
  <FareComponentDesc ApplicablePricingCategories="4 5 10 15 16 18 19" Direction="EH" Directionality="TO" FareAmount="6975" FareBasisCode="RFLRT/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="SFLX" FareTariff="304" FareType="XEX" FareTypeBitmap="01" GoverningCarrier="S7" ID="1" NotValidAfter="2020-09-08" NotValidBefore="2020-09-08" PublishedFareAmount="13950" TicketDesignator="CH25" VendorCode="ATP">
    <Segment>
      <Surcharge Amount="2300" Currency="RUB" Description="FUEL" Type="F"/>
    </Segment>
    <Brand BrandName="FLEX ECONOMY" Code="YFL" ProgramCode="S7SM" ProgramDescription="SMART CHOICE" ProgramID="83891" ProgramSystemCode="S"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18" Direction="EH" Directionality="FROM" FareAmount="2600" FareBasisCode="HLTRT" FareCurrency="RUB" FarePassengerType="ADT" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="00" GoverningCarrier="UT" ID="2" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="5200" VendorCode="ATP">
    <Segment>
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY MINIMUM" Code="MN" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18" Direction="EH" Directionality="FROM" FareAmount="900" FareBasisCode="HLTRT" FareCurrency="RUB" FarePassengerType="ADT" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="00" GoverningCarrier="UT" ID="3" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="1800" VendorCode="ATP">
    <Segment Stopover="true">
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY MINIMUM" Code="MN" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="4 5 10 15 16 18 19" Direction="EH" Directionality="FROM" FareAmount="6975" FareBasisCode="RFLRT/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="SFLX" FareTariff="304" FareType="XEX" FareTypeBitmap="01" GoverningCarrier="S7" ID="4" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="13950" TicketDesignator="CH25" VendorCode="ATP">
    <Segment Stopover="true">
      <Surcharge Amount="2300" Currency="RUB" Description="FUEL" Type="F"/>
    </Segment>
    <Brand BrandName="FLEX ECONOMY" Code="YFL" ProgramCode="S7SM" ProgramDescription="SMART CHOICE" ProgramID="83891" ProgramSystemCode="S"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="10 16 19" Direction="EH" Directionality="TO" FareAmount="0" FareBasisCode="TNBR/IN00" FareCurrency="RUB" FarePassengerType="INF" FareRule="ENR1" FareTariff="304" FareType="SB" FareTypeBitmap="01" GoverningCarrier="SU" ID="5" NotValidAfter="2020-09-08" NotValidBefore="2020-09-08" PublishedFareAmount="0" TicketDesignator="IN00" VendorCode="ATP">
    <Segment/>
    <Brand BrandName="ECONOMY LITE" Code="NB" ProgramCode="CFF1S" ProgramDescription="NEW BRANDS AFL" ProgramID="80700" ProgramSystemCode="X"/>
  </FareComponentDesc>
  <!--Другие компоненты тарифов-->
  <ValidatingCarrierDesc ID="1" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="HR"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="2" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="R3"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="3" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="S7"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="4" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="BT"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="5" NewVcxProcess="true" SettlementMethod="TCH">
    <Default Code="B2"/>
  </ValidatingCarrierDesc>
  <!--Другие валидирующие перевозчики-->
  <BaggageAllowanceDesc Description1="UP TO 22 POUNDS/10 KILOGRAMS" Description2="UP TO 45 LINEAR INCHES/115 LINEAR CENTIMETERS" ID="1" Pieces="1"/>
  <BaggageAllowanceDesc ID="2" Pieces="0"/>
  <BaggageAllowanceDesc ID="3" Pieces="0"/>
  <BaggageAllowanceDesc ID="4" Pieces="0"/>
  <BaggageAllowanceDesc ID="5" Pieces="0"/>
  <!--Другие нормы провоза багажа-->
  <LegDesc ID="1">
    <Schedule Ref="56"/>
  </LegDesc>
  <LegDesc ID="2">
    <Schedule Ref="57"/>
  </LegDesc>
  <LegDesc ID="3">
    <Schedule Ref="54"/>
  </LegDesc>
  <LegDesc ID="4">
    <Schedule Ref="59"/>
  </LegDesc>
  <LegDesc ID="5">
    <Schedule Ref="58"/>
  </LegDesc>
  <!--Другие плечи-->
  <ItineraryGroup>
    <GroupDescription>
      <LegDescription ArrivalLocation="AER" DepartureDate="2020-09-01" DepartureLocation="DME"/>
      <LegDescription ArrivalLocation="DME" DepartureDate="2020-09-08" DepartureLocation="AER"/>
    </GroupDescription>
    <Itinerary ID="1" PricingSource="ADVJR1">
      <Leg Ref="14"/>
      <Leg Ref="44"/>
      <PricingInformation PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="Y7 Y7" LastTicketDate="2020-01-23" VITA="true" ValidatingCarrierCode="HR">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="87">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="47">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="46"/>
            <Tax Ref="21"/>
            <Tax Ref="48"/>
            <Tax Ref="39"/>
            <Tax Ref="37"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="40"/>
            <TaxSummary Ref="19"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="9600" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="9600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="9600" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11400" TotalTaxes="1800"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="66">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="137">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="46"/>
            <Tax Ref="21"/>
            <Tax Ref="40"/>
            <Tax Ref="13"/>
            <Tax Ref="2"/>
            <Tax Ref="18"/>
            <TaxSummary Ref="40"/>
            <TaxSummary Ref="47"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH CNN REQUIRES ACCOMPANYING SAME CABIN ADT" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7200" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7200" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7200" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="8780" TotalTaxes="1580"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="69">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="160">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="3"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="AIR EXTRAS NOT APPLICABLE OR ARE UNKNOWN FOR THIS ITINERARY"/>
          <TotalFare BaseFareAmount="26400" BaseFareCurrency="RUB" ConstructionAmount="26400" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="26400" EquivalentCurrency="RUB" TotalPrice="31580" TotalTaxes="5180"/>
          <ValidatingCarrier Ref="1"/>
        </Fare>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="14803.125"/>
    </Itinerary>
    <Itinerary ID="2" PricingSource="ADVJR1">
      <Leg Ref="72"/>
      <Leg Ref="45"/>
      <PricingInformation BrandsOnAnyMarket="true" PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="S7 S7" LastTicketDate="2020-01-24" VITA="true" ValidatingCarrierCode="S7">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="148">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="94"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="75"/>
              <BrandFeature Ref="68"/>
              <BrandFeature Ref="44"/>
              <BrandFeature Ref="81"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="71"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="67"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="22"/>
            </FareComponent>
            <FareComponent Ref="108">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="94"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="75"/>
              <BrandFeature Ref="68"/>
              <BrandFeature Ref="44"/>
              <BrandFeature Ref="81"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="71"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="67"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="22"/>
            </FareComponent>
            <Tax Ref="49"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <Tax Ref="41"/>
            <Tax Ref="48"/>
            <Tax Ref="39"/>
            <Tax Ref="37"/>
            <Tax Ref="12"/>
            <TaxSummary Ref="22"/>
            <TaxSummary Ref="23"/>
            <TaxSummary Ref="19"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="10000" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="10000" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="10000" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="13924" TotalTaxes="3924"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="176">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="94"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="75"/>
              <BrandFeature Ref="68"/>
              <BrandFeature Ref="44"/>
              <BrandFeature Ref="81"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="71"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="67"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="22"/>
            </FareComponent>
            <FareComponent Ref="28">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="94"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="75"/>
              <BrandFeature Ref="68"/>
              <BrandFeature Ref="44"/>
              <BrandFeature Ref="81"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="71"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="67"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="22"/>
            </FareComponent>
            <Tax Ref="49"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <Tax Ref="41"/>
            <Tax Ref="40"/>
            <Tax Ref="13"/>
            <Tax Ref="2"/>
            <Tax Ref="18"/>
            <TaxSummary Ref="22"/>
            <TaxSummary Ref="23"/>
            <TaxSummary Ref="47"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7500" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7500" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11204" TotalTaxes="3704"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="88">
              <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="94"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="75"/>
              <BrandFeature Ref="68"/>
              <BrandFeature Ref="44"/>
              <BrandFeature Ref="81"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="71"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="67"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="22"/>
            </FareComponent>
            <FareComponent Ref="141">
              <Segment AvailabilityBreak="true" BookingCode="S" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
              <BrandFeature Ref="29"/>
              <BrandFeature Ref="52"/>
              <BrandFeature Ref="94"/>
              <BrandFeature Ref="35"/>
              <BrandFeature Ref="70"/>
              <BrandFeature Ref="23"/>
              <BrandFeature Ref="75"/>
              <BrandFeature Ref="68"/>
              <BrandFeature Ref="44"/>
              <BrandFeature Ref="81"/>
              <BrandFeature Ref="25"/>
              <BrandFeature Ref="53"/>
              <BrandFeature Ref="6"/>
              <BrandFeature Ref="24"/>
              <BrandFeature Ref="40"/>
              <BrandFeature Ref="71"/>
              <BrandFeature Ref="5"/>
              <BrandFeature Ref="67"/>
              <BrandFeature Ref="59"/>
              <BrandFeature Ref="22"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - S7" Type="W"/>
            <FareMessage Code="0" Info="GEN - S7" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="S7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="5"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="6000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="6000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="Before" ConditionsApply="true" Currency="RUB" Refundable="true" Type="Refund"/>
              <Penalty Amount="0" Applicability="After" ConditionsApply="true" Currency="RUB" Refundable="true" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="ADDTL AIR EXTRAS APPLY - REFINE REQUEST">
            <AncillaryFee Code="BG" Name="BAGGAGE">
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="1" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN HOLD" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="2" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN CABIN UP TO 8 KG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="3" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="4" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="5" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="6" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="7" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="8" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="9" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="10" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="11" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="12" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="13" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="14" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="15" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="16" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="17" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="18" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="19" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="20" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="21" Carrier="S7" Code="ADT" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="22" Carrier="S7" Code="CNN" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="23" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="24" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN HOLD" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="020"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="25" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2500" AncillaryTypeCode="F" BaggageID="26" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="PET IN CABIN UP TO 8 KG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="021"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="27" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="28" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="FIRST EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CC"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="29" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="30" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="CHECKED BAG SECOND" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CD"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="31" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="10500" AncillaryTypeCode="F" BaggageID="32" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="THIRD EXCESS BAG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0CE"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="33" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="34" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0DD"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="35" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="36" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG SECOND AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0H8"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="37" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="7000" AncillaryTypeCode="F" BaggageID="38" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="BAGGAGE SPECIAL CHARGE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IA"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="39" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="40" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS SIZE" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0ID"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="41" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="3500" AncillaryTypeCode="F" BaggageID="42" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS BAG FIRST AT CHECK IN" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IE"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="43" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="2000" AncillaryTypeCode="F" BaggageID="44" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="EXCESS WEIGHT" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0IK"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="45" Carrier="S7" Code="ADT" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
              <Details Amount="0" AncillaryTypeCode="F" BaggageID="46" Carrier="S7" Code="CNN" DepartureDate="2020-09-08" Description="GUIDE DOG" Destination="DME" EndSegment="2" Origin="AER" StartSegment="2" Subcode="0MN"/>
            </AncillaryFee>
            <OrderStandardBag>
              <PassengerBags Code="ADT">
                <BaggageSequenceOrder BaggageRef="3" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="5" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="7" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="27" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="29" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="31" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="CNN">
                <BaggageSequenceOrder BaggageRef="4" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="6" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="8" StandardBag="3"/>
                <BaggageSequenceOrder BaggageRef="28" StandardBag="1"/>
                <BaggageSequenceOrder BaggageRef="30" StandardBag="2"/>
                <BaggageSequenceOrder BaggageRef="32" StandardBag="3"/>
              </PassengerBags>
              <PassengerBags Code="INF"/>
            </OrderStandardBag>
          </AncillaryFeeGroup>
          <TotalFare BaseFareAmount="27500" BaseFareCurrency="RUB" ConstructionAmount="27500" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="27500" EquivalentCurrency="RUB" TotalPrice="39052" TotalTaxes="11552"/>
          <ValidatingCarrier Ref="3"/>
          <ValidatingCarrier Ref="13"/>
        </Fare>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="27067.076"/>
    </Itinerary>
    <!--Другие варианты перелетов-->
  </ItineraryGroup>
  <!--Другие маршруты-->
</GroupedItineraryResponse>


Копировать
<OTA_AirLowFareSearchRQ ResponseType="OTA" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true">
    <CabinPref Cabin="Economy" PreferLevel="Preferred"/>
    <TPA_Extensions>
      <LongConnectTime Enable="true"/>
      <LongConnectPoints Max="3" Min="1"/>
      <KeepSameCabin Enabled="true"/>
      <ExcludeCallDirectCarriers Enabled="true"/>
      <DiversityParameters AdditionalNonStopsPercentage="100"/>
    </TPA_Extensions>
    <AncillaryFees Enable="true">
      <AncillaryFeeGroup Code="BG"/>
    </AncillaryFees>
    <Baggage Description="true" RequestType="A"/>
  </TravelPreferences>
  <TravelerInfoSummary>
    <SeatsRequested>3</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="2">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="CNN" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="INF" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
    </AirTravelerAvail>
    <PriceRequestInformation>
      <TPA_Extensions>
        <BrandedFareIndicators ReturnBrandAncillaries="true" SingleBrandedFare="true"/>
      </TPA_Extensions>
    </PriceRequestInformation>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
    <MultiTicket DisplayPolicy="SCHS"/>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<OTA_AirLowFareSearchRS AvailableItinCount="0" BrandedOneWayItinCount="0" DepartedItinCount="0" PricedItinCount="300" SimpleOneWayItinCount="0" SoldOutItinCount="0" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Success/>
  <Warnings>
    <Warning Code="TRANSACTIONID" MessageClass="I" ShortText="5201328027154971117" Type="WORKERTHREAD"/>
    <Warning Code="ASE032LPSPIL39F.IDM.SGDCPROD.SABRE.COM" MessageClass="I" ShortText="27041" Type="SERVER"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="15936" Type="DRE"/>
    <Warning Code="RULEID" MessageClass="I" ShortText="24467" Type="DEFAULT"/>
  </Warnings>
  <BrandFeatures>
    <BrandFeature Application="C" CommercialName="BASIC SEAT" Id="1" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="C" CommercialName="SEAT SELECTION DURING CHECK IN" Id="2" ServiceGroup="BF" ServiceType="Z" SubCode="050" Vendor="ATP"/>
    <BrandFeature Application="D" CommercialName="REFUNDABLE TICKET" Id="3" ServiceGroup="BF" ServiceType="Z" SubCode="056" Vendor="ATP"/>
    <BrandFeature Application="C" CommercialName="CHANGEABLE TICKET" Id="4" ServiceGroup="BF" ServiceType="Z" SubCode="059" Vendor="ATP"/>
    <BrandFeature Application="N" CommercialName="25 PERCENT MILES EARNED" Id="5" ServiceGroup="BF" ServiceType="Z" SubCode="06A" Vendor="ATP"/>
    <!--Другие услуги-->
  </BrandFeatures>
  <PricedItineraries>
    <PricedItinerary SequenceNumber="1">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="267"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-08T07:20:00" DepartureDateTime="2020-09-08T05:00:00" ElapsedTime="140" FlightNumber="580" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="580"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="23300" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="2"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6000" CurrencyCode="RUB"/>
              <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8200" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="CNN" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="4700" CurrencyCode="RUB"/>
              <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="6900" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="INF" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="0" CurrencyCode="RUB"/>
              <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <TotalFare Amount="0" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="8"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="4"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="8"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <AncillaryFeeGroups>
            <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
            </AncillaryFeeGroup>
          </AncillaryFeeGroups>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="15477.9"/>
      </TPA_Extensions>
    </PricedItinerary>
    <PricedItinerary SequenceNumber="2">
      <AirItinerary DirectionInd="Return">
        <OriginDestinationOptions>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="140">
            <FlightSegment ArrivalDateTime="2020-09-01T18:35:00" DepartureDateTime="2020-09-01T16:15:00" ElapsedTime="140" FlightNumber="267" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="VKO" TerminalID="A"/>
              <ArrivalAirport LocationCode="AER"/>
              <OperatingAirline Code="UT" FlightNumber="267"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
          <OriginDestinationOption ArrivalCountry="RU" DepartureCountry="RU" ElapsedTime="135">
            <FlightSegment ArrivalDateTime="2020-09-08T21:45:00" DepartureDateTime="2020-09-08T19:30:00" ElapsedTime="135" FlightNumber="268" ResBookDesigCode="H" StopQuantity="0">
              <DepartureAirport LocationCode="AER"/>
              <ArrivalAirport LocationCode="VKO" TerminalID="A"/>
              <OperatingAirline Code="UT" FlightNumber="268"/>
              <Equipment AirEquipType="738"/>
              <MarketingAirline Code="UT"/>
              <MarriageGrp>O</MarriageGrp>
              <DepartureTimeZone GMTOffset="3"/>
              <ArrivalTimeZone GMTOffset="3"/>
              <TPA_Extensions>
                <eTicket Ind="true"/>
                <Mileage Amount="847"/>
              </TPA_Extensions>
            </FlightSegment>
          </OriginDestinationOption>
        </OriginDestinationOptions>
      </AirItinerary>
      <AirItineraryPricingInfo BrandsOnAnyMarket="true" FareReturned="true" LastTicketDate="2020-01-31" PricingSource="ADVJR1" PricingSubSource="MIP">
        <ItinTotalFare>
          <BaseFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <FareConstruction Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <EquivFare Amount="16700" CurrencyCode="RUB" DecimalPlaces="0"/>
          <Taxes>
            <Tax Amount="6600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="TOTALTAX"/>
          </Taxes>
          <TotalFare Amount="23300" CurrencyCode="RUB" DecimalPlaces="0"/>
        </ItinTotalFare>
        <PTC_FareBreakdowns>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="ADT" Quantity="2"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="00" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="6000" CurrencyCode="RUB"/>
              <FareConstruction Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="6000" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="8200" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 2600UT MOW Q400 2600RUB6000END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="CNN" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/CH25</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="4700" CurrencyCode="RUB"/>
              <FareConstruction Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="4700" CurrencyCode="RUB" DecimalPlaces="0"/>
              <Taxes>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="500" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <Tax Amount="600" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TaxSummary Amount="1000" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YQF"/>
                <TaxSummary Amount="1200" CurrencyCode="RUB" DecimalPlaces="0" TaxCode="YRI"/>
                <TotalTax Amount="2200" CurrencyCode="RUB" DecimalPlaces="0"/>
              </Taxes>
              <TotalFare Amount="6900" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <Surcharges Ind="Q" Type="MISCELLANEOUS/OTHER">400</Surcharges>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER Q400 1950UT MOW Q400 1950RUB4700END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
          <PTC_FareBreakdown>
            <PassengerTypeQuantity Code="INF" Quantity="1"/>
            <FareBasisCodes>
              <FareBasisCode ArrivalAirportCode="AER" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="VKO" FareComponentBeginAirport="VKO" FareComponentDirectionality="FROM" FareComponentEndAirport="AER" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
              <FareBasisCode ArrivalAirportCode="VKO" AvailabilityBreak="true" BookingCode="H" DepartureAirportCode="AER" FareComponentBeginAirport="AER" FareComponentDirectionality="TO" FareComponentEndAirport="VKO" FareComponentFareRule="UT22" FareComponentFareTariff="304" FareComponentFareType="XEL" FareComponentFareTypeBitmap="01" FareComponentVendorCode="ATP" GovCarrier="UT">HLTRT/IN</FareBasisCode>
            </FareBasisCodes>
            <PassengerFare>
              <BaseFare Amount="0" CurrencyCode="RUB"/>
              <FareConstruction Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <EquivFare Amount="0" CurrencyCode="RUB" DecimalPlaces="0"/>
              <TotalFare Amount="0" CurrencyCode="RUB"/>
              <PenaltiesInfo>
                <Penalty Amount="12000" Applicability="Before" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Amount="12000" Applicability="After" Cat16Info="true" Changeable="true" CurrencyCode="RUB" DecimalPlaces="0" Type="Exchange"/>
                <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
              </PenaltiesInfo>
              <TPA_Extensions>
                <FareComponents>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="1"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                  <FareComponent BrandID="MN" BrandName="ECONOMY MINIMUM" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B">
                    <Segment FlightIndex="1" LegIndex="2"/>
                    <BrandFeatureRef FeatureId="4"/>
                    <BrandFeatureRef FeatureId="3"/>
                    <BrandFeatureRef FeatureId="11"/>
                    <BrandFeatureRef FeatureId="44"/>
                    <BrandFeatureRef FeatureId="28"/>
                    <BrandFeatureRef FeatureId="30"/>
                    <BrandFeatureRef FeatureId="38"/>
                    <BrandFeatureRef FeatureId="34"/>
                    <BrandFeatureRef FeatureId="36"/>
                    <BrandFeatureRef FeatureId="35"/>
                    <BrandFeatureRef FeatureId="46"/>
                    <BrandFeatureRef FeatureId="41"/>
                    <BrandFeatureRef FeatureId="39"/>
                    <BrandFeatureRef FeatureId="33"/>
                    <BrandFeatureRef FeatureId="42"/>
                    <BrandFeatureRef FeatureId="45"/>
                    <BrandFeatureRef FeatureId="51"/>
                  </FareComponent>
                </FareComponents>
                <Messages>
                  <Message AirlineCode="UT" FailCode="0" Info="NON-REFUNDABLE/NO FREE BAGGAGE/NO FREE MEAL" Type="N"/>
                  <Message FailCode="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                  <Message FailCode="0" Info="VALIDATING CARRIER" Type="W"/>
                  <Message FailCode="0" Info="BSP - UT" Type="W"/>
                  <Message FailCode="0" Info="GEN - UT" Type="W"/>
                  <Message FailCode="0" Info="TCH - UT" Type="W"/>
                </Messages>
                <BaggageInformationList>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="0"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                  <BaggageInformation AirlineCode="UT" ProvisionType="A">
                    <Segment Id="1"/>
                    <Allowance Pieces="0"/>
                  </BaggageInformation>
                </BaggageInformationList>
              </TPA_Extensions>
            </PassengerFare>
            <Endorsements NonRefundableIndicator="true"/>
            <TPA_Extensions>
              <FareCalcLine Info="MOW UT AER0UT MOW0RUB0END"/>
            </TPA_Extensions>
            <FareInfos>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="4"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
              <FareInfo>
                <FareReference>H</FareReference>
                <TPA_Extensions>
                  <SeatsRemaining BelowMin="false" Number="6"/>
                  <Cabin Cabin="Y"/>
                </TPA_Extensions>
              </FareInfo>
            </FareInfos>
          </PTC_FareBreakdown>
        </PTC_FareBreakdowns>
        <FareInfos>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="4"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
          <FareInfo>
            <FareReference>H</FareReference>
            <TPA_Extensions>
              <SeatsRemaining BelowMin="false" Number="6"/>
              <Cabin Cabin="Y"/>
            </TPA_Extensions>
          </FareInfo>
        </FareInfos>
        <TPA_Extensions>
          <DivideInParty Indicator="false"/>
          <AncillaryFeeGroups>
            <AncillaryFeeGroup Code="BG" Name="BAGGAGE">
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="1" Carrier="UT" Date="2020-09-01" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="2" Carrier="UT" Date="2020-09-01" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="AER" EndSegment="1" OriginAirport="VKO" PassengerCode="ALL" StartSegment="1" Subcode="0C5"/>
              <AncillaryFeeItem Amount="2499" AncillaryTypeCode="P" BaggageID="3" Carrier="UT" Date="2020-09-08" Description="PIECE OF BAG UPTO20KG 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C2"/>
              <AncillaryFeeItem Amount="4999" AncillaryTypeCode="P" BaggageID="4" Carrier="UT" Date="2020-09-08" Description="BAG 21 30KG UPTO 203LCM" DestinationAirport="VKO" EndSegment="2" OriginAirport="AER" PassengerCode="ALL" StartSegment="2" Subcode="0C5"/>
            </AncillaryFeeGroup>
          </AncillaryFeeGroups>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="BSP">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="TCH">
            <Default Code="UT"/>
          </ValidatingCarrier>
          <ValidatingCarrier NewVcxProcess="true" SettlementMethod="GEN">
            <Default Code="UT"/>
          </ValidatingCarrier>
        </TPA_Extensions>
      </AirItineraryPricingInfo>
      <TicketingInfo TicketType="eTicket" ValidInterline="Yes"/>
      <TPA_Extensions>
        <ValidatingCarrier Code="UT"/>
        <DiversitySwapper WeighedPriceAmount="15123.8"/>
      </TPA_Extensions>
    </PricedItinerary>
    <!--Другие варианты перелетов-->
  </PricedItineraries>
</OTA_AirLowFareSearchRS>


Копировать
<OTA_AirLowFareSearchRQ ResponseType="GIR" Version="5.2.0" xmlns="http://www.opentravel.org/OTA/2003/05">
  <POS>
    <Source PseudoCityCode="9LSC">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2020-09-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="MOW"/>
    <DestinationLocation LocationCode="AER"/>
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2020-09-08T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="AER"/>
    <DestinationLocation LocationCode="MOW"/>
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true">
    <CabinPref Cabin="Economy" PreferLevel="Preferred"/>
    <TPA_Extensions>
      <LongConnectTime Enable="true"/>
      <LongConnectPoints Max="3" Min="1"/>
      <KeepSameCabin Enabled="true"/>
      <ExcludeCallDirectCarriers Enabled="true"/>
      <DiversityParameters AdditionalNonStopsPercentage="100"/>
    </TPA_Extensions>
    <AncillaryFees Enable="true">
      <AncillaryFeeGroup Code="BG"/>
    </AncillaryFees>
    <Baggage Description="true" RequestType="A"/>
  </TravelPreferences>
  <TravelerInfoSummary>
    <SeatsRequested>3</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="2">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="CNN" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
      <PassengerTypeQuantity Code="INF" Quantity="1">
        <TPA_Extensions>
          <VoluntaryChanges Match="Info"/>
        </TPA_Extensions>
      </PassengerTypeQuantity>
    </AirTravelerAvail>
    <PriceRequestInformation>
      <TPA_Extensions>
        <BrandedFareIndicators ReturnBrandAncillaries="true" SingleBrandedFare="true"/>
      </TPA_Extensions>
    </PriceRequestInformation>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="200ITINS"/>
    </IntelliSellTransaction>
    <MultiTicket DisplayPolicy="SCHS"/>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>

Копировать
<GroupedItineraryResponse Version="5.2.0" xmlns="http://webservices.sabre.com/wsdl/sabreXML1.0.00/shopping/GroupedItineraryResponse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Message Code="TRANSACTIONID" Severity="Info" Text="5201770845967675577" Type="WORKERTHREAD"/>
  <Message Code="ASEPT2LAPP00344.IDM.SGDCPROD.SABRE.COM" Severity="Info" Text="27031" Type="SERVER"/>
  <Message Code="RULEID" Severity="Info" Text="15936" Type="DRE"/>
  <Message Code="RULEID" Severity="Info" Text="24467" Type="DEFAULT"/>
  <Statistics Itineraries="300"/>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="1" Stops="0" TotalMilesFlown="847">
    <Departure Airport="AER" City="AER" Country="RU" Time="04:25:00+03:00"/>
    <Arrival Airport="VKO" City="MOW" Country="RU" Time="06:40:00+03:00"/>
    <Carrier Disclosure="DP" Marketing="H1" MarketingFlightNumber="1435" Operating="H1" OperatingFlightNumber="1435">
      <Equipment Code="737" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="2" Stops="0" TotalMilesFlown="831">
    <Departure Airport="DME" City="MOW" Country="RU" Time="20:00:00+03:00"/>
    <Arrival Airport="AER" City="AER" Country="RU" Time="22:25:00+03:00"/>
    <Carrier Alliances="OW " Marketing="S7" MarketingFlightNumber="2049" Operating="S7" OperatingFlightNumber="2049">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="S*T*T*S" ID="3" Stops="0" TotalMilesFlown="831">
    <Departure Airport="AER" City="AER" Country="RU" Time="17:10:00+03:00"/>
    <Arrival Airport="DME" City="MOW" Country="RU" Time="19:50:00+03:00"/>
    <Carrier Marketing="Y7" MarketingFlightNumber="1032" Operating="Y7" OperatingFlightNumber="1032">
      <Equipment Code="738" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="4" Stops="0" TotalMilesFlown="873">
    <Departure Airport="SVO" City="MOW" Country="RU" Terminal="B" Time="14:10:00+03:00"/>
    <Arrival Airport="AER" City="AER" Country="RU" Time="16:40:00+03:00"/>
    <Carrier Marketing="SU" MarketingFlightNumber="1124" Operating="SU" OperatingFlightNumber="1124">
      <Equipment Code="32A" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ETicketable="true" Frequency="SMTWTFS" ID="5" Stops="0" TotalMilesFlown="831">
    <Departure Airport="AER" City="AER" Country="RU" Time="09:40:00+03:00"/>
    <Arrival Airport="DME" City="MOW" Country="RU" Time="12:05:00+03:00"/>
    <Carrier Alliances="OW " Marketing="S7" MarketingFlightNumber="2042" Operating="S7" OperatingFlightNumber="2042">
      <Equipment Code="319" TypeForFirstLeg="N" TypeForLastLeg="N"/>
    </Carrier>
  </ScheduleDesc>
  <!--Другие рейсы-->
  <TaxDesc Amount="190" Code="YQI" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED MISC" ID="1" PublishedAmount="190" PublishedCurrency="RUB" Station="SVO"/>
  <TaxDesc Amount="50" Code="RI4" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC ARRIVAL" ID="2" PublishedAmount="50" PublishedCurrency="RUB" Station="AER"/>
  <TaxDesc Amount="120" Code="RI4" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC ARRIVAL" ID="3" PublishedAmount="120" PublishedCurrency="RUB" Station="SVO"/>
  <TaxDesc Amount="2700" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="4" PublishedAmount="2700" PublishedCurrency="RUB" Station="AER"/>
  <TaxDesc Amount="1300" Code="YRF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="5" PublishedAmount="1300" PublishedCurrency="RUB" Station="DME"/>
  <!--Другие таксы-->
  <TaxSummaryDesc Amount="304" Code="RI3" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC DEPARTURE" ID="1" PublishedAmount="92" PublishedCurrency="RUB" Station="SVO"/>
  <TaxSummaryDesc Amount="190" Code="YQI" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED MISC" ID="2" PublishedAmount="190" PublishedCurrency="RUB" Station="SVO"/>
  <TaxSummaryDesc Amount="304" Code="RI3" Country="RU" Currency="RUB" Description="TERMINAL USE CHARGE DOMESTIC DEPARTURE" ID="3" PublishedAmount="184" PublishedCurrency="RUB" Station="SVO"/>
  <TaxSummaryDesc Amount="3400" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="4" PublishedAmount="25.00" PublishedCurrency="EUR" Station="VKO"/>
  <TaxSummaryDesc Amount="2700" Code="YQF" Currency="RUB" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" ID="5" PublishedAmount="2700" PublishedCurrency="RUB" Station="AER"/>
  <!--Другие таксы-->
  <BrandFeatureDesc Application="C" CommercialName="SECOND EXCESS BAG" ID="1" ServiceGroup="BG" ServiceType="C" SubCode="0CD" Vendor="ATP"/>
  <BrandFeatureDesc Application="C" CommercialName="1ST FISHING EQPMT UPTO 20KG" ID="2" ServiceGroup="BG" ServiceType="C" SubCode="0L1" Vendor="ATP"/>
  <BrandFeatureDesc Application="F" CommercialName="CARRY10KG 22LB 55L X 40W X 25H" ID="3" ServiceGroup="BG" ServiceType="C" SubCode="08A" Vendor="ATP"/>
  <BrandFeatureDesc Application="C" CommercialName="SEAT ASSIGNMENT EXTRA SPACE" ID="4" ServiceGroup="SB" ServiceType="F" SubCode="0BV" Vendor="ATP"/>
  <BrandFeatureDesc Application="N" CommercialName="LOUNGE ACCESS" ID="5" ServiceGroup="LG" ServiceType="F" SubCode="0BX" Vendor="ATP"/>
  <!--Другие услуги-->
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18" Direction="EH" Directionality="FROM" FareAmount="2600" FareBasisCode="HLTRT" FareCurrency="RUB" FarePassengerType="ADT" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="00" GoverningCarrier="UT" ID="1" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="5200" VendorCode="ATP">
    <Segment>
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY MINIMUM" Code="MN" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18" Direction="EH" Directionality="FROM" FareAmount="900" FareBasisCode="HLTRT" FareCurrency="RUB" FarePassengerType="ADT" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="00" GoverningCarrier="UT" ID="2" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="1800" VendorCode="ATP">
    <Segment Stopover="true">
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY MINIMUM" Code="MN" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="10 16 19" Direction="EH" Directionality="TO" FareAmount="0" FareBasisCode="TNBR/IN00" FareCurrency="RUB" FarePassengerType="INF" FareRule="ENR1" FareTariff="304" FareType="SB" FareTypeBitmap="01" GoverningCarrier="SU" ID="3" NotValidAfter="2020-09-08" NotValidBefore="2020-09-08" PublishedFareAmount="0" TicketDesignator="IN00" VendorCode="ATP">
    <Segment/>
    <Brand BrandName="ECONOMY LITE" Code="NB" ProgramCode="CFF1S" ProgramDescription="NEW BRANDS AFL" ProgramID="80700" ProgramSystemCode="X"/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="4 5 10 12 15 16 18 19" Direction="EH" Directionality="FROM" FareAmount="5625" FareBasisCode="HLTOW/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="N4BE" FareTariff="304" FareType="ERT" FareTypeBitmap="01" GoverningCarrier="N4" ID="4" NotValidAfter="2020-09-08" NotValidBefore="2020-09-08" OneWayFare="true" PublishedFareAmount="5625" TicketDesignator="CH25" VendorCode="ATP">
    <Segment/>
  </FareComponentDesc>
  <FareComponentDesc ApplicablePricingCategories="7 10 12 15 16 18 19" Direction="EH" Directionality="FROM" FareAmount="675" FareBasisCode="HLTRT/CH25" FareCurrency="RUB" FarePassengerType="CNN" FareRule="UT22" FareTariff="304" FareType="XEL" FareTypeBitmap="01" GoverningCarrier="UT" ID="5" NotValidAfter="2020-09-01" NotValidBefore="2020-09-01" PublishedFareAmount="1350" TicketDesignator="CH25" VendorCode="ATP">
    <Segment Stopover="true">
      <Surcharge Amount="400" Currency="RUB" Description="MISCELLANEOUS/OTHER" Type="Q"/>
    </Segment>
    <Brand BrandName="ECONOMY MINIMUM" Code="MN" ProgramCode="BUT" ProgramDescription="BRANDED FARES UT 5" ProgramID="81828" ProgramSystemCode="B"/>
  </FareComponentDesc>
  <!--Другие компоненты тарифов-->
  <ValidatingCarrierDesc ID="1" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="HR"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="2" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="R3"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="3" NewVcxProcess="true" SettlementMethod="BSP">
    <Default Code="S7"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="4" NewVcxProcess="true" SettlementMethod="TCH">
    <Default Code="UT"/>
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="5" NewVcxProcess="true" SettlementMethod="TCH">
    <Default Code="R3"/>
  </ValidatingCarrierDesc>
  <!--Другие валидирующие перевозчики-->
  <BaggageAllowanceDesc ID="1" Pieces="0"/>
  <BaggageAllowanceDesc ID="2" Pieces="0"/>
  <BaggageAllowanceDesc ID="3" Pieces="0"/>
  <BaggageAllowanceDesc ID="4" Pieces="0"/>
  <BaggageAllowanceDesc ID="5" Pieces="0"/>
  <!--Другие нормы провоза багажа-->
  <LegDesc ID="1">
    <Schedule Ref="44"/>
  </LegDesc>
  <LegDesc ID="2">
    <Schedule Ref="45"/>
  </LegDesc>
  <LegDesc ID="3">
    <Schedule Ref="42"/>
  </LegDesc>
  <LegDesc ID="4">
    <Schedule Ref="47"/>
  </LegDesc>
  <LegDesc ID="5">
    <Schedule Ref="46"/>
  </LegDesc>
  <!--Другие плечи-->
  <ItineraryGroup>
    <GroupDescription>
      <LegDescription ArrivalLocation="AER" DepartureDate="2020-09-01" DepartureLocation="DME"/>
      <LegDescription ArrivalLocation="DME" DepartureDate="2020-09-08" DepartureLocation="AER"/>
    </GroupDescription>
    <Itinerary ID="1" PricingSource="ADVJR1">
      <Leg Ref="14"/>
      <Leg Ref="35"/>
      <PricingInformation PricingSubsource="MIP">
        <Fare ETicketable="true" GoverningCarriers="Y7 Y7" LastTicketDate="2020-01-23" VITA="true" ValidatingCarrierCode="HR">
          <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
            <FareComponent Ref="56">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="26">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="14"/>
            <Tax Ref="34"/>
            <Tax Ref="26"/>
            <Tax Ref="25"/>
            <Tax Ref="8"/>
            <TaxSummary Ref="27"/>
            <TaxSummary Ref="13"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="9600" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="9600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="9600" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="11400" TotalTaxes="1800"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="2"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="2"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
            <FareComponent Ref="40">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="96">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <Tax Ref="32"/>
            <Tax Ref="14"/>
            <Tax Ref="27"/>
            <Tax Ref="9"/>
            <Tax Ref="2"/>
            <Tax Ref="13"/>
            <TaxSummary Ref="27"/>
            <TaxSummary Ref="30"/>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH CNN REQUIRES ACCOMPANYING SAME CABIN ADT" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="7200" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="7200" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="7200" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="8780" TotalTaxes="1580"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="2"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="2"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INF">
            <FareComponent Ref="43">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <FareComponent Ref="112">
              <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
            </FareComponent>
            <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
            <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
            <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
            <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
            <FareMessage Code="0" Info="BSP - HR" Type="W"/>
            <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
            <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="0"/>
              <Allowance Ref="2"/>
            </BaggageInformation>
            <BaggageInformation AirlineCode="Y7" ProvisionType="A">
              <Segment ID="1"/>
              <Allowance Ref="2"/>
            </BaggageInformation>
            <PenaltiesInfo>
              <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
              <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
              <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
            </PenaltiesInfo>
          </PassengerInfo>
          <AncillaryFeeGroup Message="AIR EXTRAS NOT APPLICABLE OR ARE UNKNOWN FOR THIS ITINERARY"/>
          <TotalFare BaseFareAmount="26400" BaseFareCurrency="RUB" ConstructionAmount="26400" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="26400" EquivalentCurrency="RUB" TotalPrice="31580" TotalTaxes="5180"/>
          <ValidatingCarrier Ref="1"/>
        </Fare>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="24277.125"/>
    </Itinerary>
    <Itinerary ID="2" PricingSource="ADVJR1">
      <Leg Ref="32"/>
      <Leg Ref="35"/>
      <PricingInformation>
        <Ticket>
          <Leg DepartureDate="2020-09-01" Ref="32"/>
          <PricingInformation BrandsOnAnyMarket="true" PricingSubsource="MIP">
            <Fare ETicketable="true" GoverningCarriers="S7" LastTicketDate="2020-01-24" VITA="true" ValidatingCarrierCode="S7">
              <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
                <FareComponent Ref="10">
                  <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
                  <BrandFeature Ref="20"/>
                  <BrandFeature Ref="32"/>
                  <BrandFeature Ref="60"/>
                  <BrandFeature Ref="23"/>
                  <BrandFeature Ref="45"/>
                  <BrandFeature Ref="15"/>
                  <BrandFeature Ref="49"/>
                  <BrandFeature Ref="43"/>
                  <BrandFeature Ref="28"/>
                  <BrandFeature Ref="52"/>
                  <BrandFeature Ref="17"/>
                  <BrandFeature Ref="33"/>
                  <BrandFeature Ref="5"/>
                  <BrandFeature Ref="16"/>
                  <BrandFeature Ref="25"/>
                  <BrandFeature Ref="46"/>
                  <BrandFeature Ref="4"/>
                  <BrandFeature Ref="42"/>
                  <BrandFeature Ref="38"/>
                  <BrandFeature Ref="14"/>
                </FareComponent>
                <Tax Ref="35"/>
                <Tax Ref="5"/>
                <Tax Ref="34"/>
                <Tax Ref="8"/>
                <TaxSummary Ref="39"/>
                <TaxSummary Ref="7"/>
                <TaxSummary Ref="17"/>
                <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
                <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
                <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
                <FareMessage Code="0" Info="BSP - S7" Type="W"/>
                <FareMessage Code="0" Info="GEN - S7" Type="W"/>
                <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
                <PassengerTotalFare BaseFareAmount="5070" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="5070" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="5070" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="7032" TotalTaxes="1962"/>
                <BaggageInformation AirlineCode="S7" ProvisionType="A">
                  <Segment ID="0"/>
                  <Allowance Ref="4"/>
                </BaggageInformation>
                <PenaltiesInfo>
                  <Penalty Amount="3000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Amount="3000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
              </PassengerInfo>
              <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
                <FareComponent Ref="74">
                  <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
                  <BrandFeature Ref="20"/>
                  <BrandFeature Ref="32"/>
                  <BrandFeature Ref="60"/>
                  <BrandFeature Ref="23"/>
                  <BrandFeature Ref="45"/>
                  <BrandFeature Ref="15"/>
                  <BrandFeature Ref="49"/>
                  <BrandFeature Ref="43"/>
                  <BrandFeature Ref="28"/>
                  <BrandFeature Ref="52"/>
                  <BrandFeature Ref="17"/>
                  <BrandFeature Ref="33"/>
                  <BrandFeature Ref="5"/>
                  <BrandFeature Ref="16"/>
                  <BrandFeature Ref="25"/>
                  <BrandFeature Ref="46"/>
                  <BrandFeature Ref="4"/>
                  <BrandFeature Ref="42"/>
                  <BrandFeature Ref="38"/>
                  <BrandFeature Ref="14"/>
                </FareComponent>
                <Tax Ref="35"/>
                <Tax Ref="5"/>
                <Tax Ref="27"/>
                <Tax Ref="13"/>
                <TaxSummary Ref="39"/>
                <TaxSummary Ref="7"/>
                <TaxSummary Ref="28"/>
                <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
                <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
                <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
                <FareMessage Code="0" Info="BSP - S7" Type="W"/>
                <FareMessage Code="0" Info="GEN - S7" Type="W"/>
                <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
                <PassengerTotalFare BaseFareAmount="3805" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="3805" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="3805" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="5657" TotalTaxes="1852"/>
                <BaggageInformation AirlineCode="S7" ProvisionType="A">
                  <Segment ID="0"/>
                  <Allowance Ref="4"/>
                </BaggageInformation>
                <PenaltiesInfo>
                  <Penalty Amount="3000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Amount="3000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Applicability="Before" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
              </PassengerInfo>
              <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INF">
                <FareComponent Ref="9">
                  <Segment AvailabilityBreak="true" BookingCode="Q" CabinCode="Y" MealCode="S" SeatsAvailable="7"/>
                  <BrandFeature Ref="20"/>
                  <BrandFeature Ref="32"/>
                  <BrandFeature Ref="60"/>
                  <BrandFeature Ref="23"/>
                  <BrandFeature Ref="45"/>
                  <BrandFeature Ref="15"/>
                  <BrandFeature Ref="49"/>
                  <BrandFeature Ref="43"/>
                  <BrandFeature Ref="28"/>
                  <BrandFeature Ref="52"/>
                  <BrandFeature Ref="17"/>
                  <BrandFeature Ref="33"/>
                  <BrandFeature Ref="5"/>
                  <BrandFeature Ref="16"/>
                  <BrandFeature Ref="25"/>
                  <BrandFeature Ref="46"/>
                  <BrandFeature Ref="4"/>
                  <BrandFeature Ref="42"/>
                  <BrandFeature Ref="38"/>
                  <BrandFeature Ref="14"/>
                </FareComponent>
                <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
                <FareMessage Carrier="S7" Code="0" Info="S7 ONLY/NON-REF/CHNG/RESTR" Type="N"/>
                <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
                <FareMessage Code="0" Info="BSP - S7" Type="W"/>
                <FareMessage Code="0" Info="GEN - S7" Type="W"/>
                <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
                <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
                <BaggageInformation AirlineCode="S7" ProvisionType="A">
                  <Segment ID="0"/>
                  <Allowance Ref="4"/>
                </BaggageInformation>
                <PenaltiesInfo>
                  <Penalty Amount="3000" Applicability="Before" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Amount="3000" Applicability="After" Cat16Info="true" Changeable="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Amount="0" Applicability="Before" ConditionsApply="true" Currency="RUB" Refundable="true" Type="Refund"/>
                  <Penalty Applicability="After" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
              </PassengerInfo>
              <AncillaryFeeGroup>
                <AncillaryFee Code="BG" Name="BAGGAGE">
                  <Details Amount="2500" AncillaryTypeCode="F" BaggageID="1" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN HOLD" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="020"/>
                  <Details Amount="2500" AncillaryTypeCode="F" BaggageID="2" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="PET IN CABIN UP TO 8 KG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="021"/>
                  <Details Amount="2000" AncillaryTypeCode="F" BaggageID="3" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="FIRST EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CC"/>
                  <Details Amount="2000" AncillaryTypeCode="F" BaggageID="4" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="CHECKED BAG SECOND" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CD"/>
                  <Details Amount="10500" AncillaryTypeCode="F" BaggageID="5" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="THIRD EXCESS BAG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0CE"/>
                  <Details Amount="0" AncillaryTypeCode="F" BaggageID="6" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="SNOW SKI SNOWBOARD EQUIPMENT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0DD"/>
                  <Details Amount="3500" AncillaryTypeCode="F" BaggageID="7" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="EXCESS BAG SECOND AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0H8"/>
                  <Details Amount="7000" AncillaryTypeCode="F" BaggageID="8" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="BAGGAGE SPECIAL CHARGE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IA"/>
                  <Details Amount="2000" AncillaryTypeCode="F" BaggageID="9" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="EXCESS SIZE" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0ID"/>
                  <Details Amount="3500" AncillaryTypeCode="F" BaggageID="10" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="EXCESS BAG FIRST AT CHECK IN" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IE"/>
                  <Details Amount="2000" AncillaryTypeCode="F" BaggageID="11" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="EXCESS WEIGHT" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0IK"/>
                  <Details Amount="0" AncillaryTypeCode="F" BaggageID="12" Carrier="S7" Code="ALL" DepartureDate="2020-09-01" Description="GUIDE DOG" Destination="AER" EndSegment="1" Origin="DME" StartSegment="1" Subcode="0MN"/>
                </AncillaryFee>
                <OrderStandardBag>
                  <PassengerBags Code="ADT">
                    <BaggageSequenceOrder BaggageRef="3" StandardBag="1"/>
                    <BaggageSequenceOrder BaggageRef="4" StandardBag="2"/>
                    <BaggageSequenceOrder BaggageRef="5" StandardBag="3"/>
                  </PassengerBags>
                  <PassengerBags Code="CNN">
                    <BaggageSequenceOrder BaggageRef="3" StandardBag="1"/>
                    <BaggageSequenceOrder BaggageRef="4" StandardBag="2"/>
                    <BaggageSequenceOrder BaggageRef="5" StandardBag="3"/>
                  </PassengerBags>
                  <PassengerBags Code="INF">
                    <BaggageSequenceOrder BaggageRef="3" StandardBag="1"/>
                    <BaggageSequenceOrder BaggageRef="4" StandardBag="2"/>
                    <BaggageSequenceOrder BaggageRef="5" StandardBag="3"/>
                  </PassengerBags>
                </OrderStandardBag>
              </AncillaryFeeGroup>
              <TotalFare BaseFareAmount="13945" BaseFareCurrency="RUB" ConstructionAmount="13945" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="13945" EquivalentCurrency="RUB" TotalPrice="19721" TotalTaxes="5776"/>
              <ValidatingCarrier Ref="3"/>
              <ValidatingCarrier Ref="10"/>
            </Fare>
          </PricingInformation>
        </Ticket>
        <Ticket>
          <Leg DepartureDate="2020-09-08" Ref="35"/>
          <PricingInformation PricingSubsource="MIP">
            <Fare ETicketable="true" GoverningCarriers="Y7" LastTicketDate="2020-01-23" VITA="true" ValidatingCarrierCode="HR">
              <PassengerInfo NonRefundable="true" PassengerNumber="2" PassengerType="ADT">
                <FareComponent Ref="15">
                  <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
                </FareComponent>
                <Tax Ref="14"/>
                <Tax Ref="26"/>
                <Tax Ref="25"/>
                <TaxSummary Ref="14"/>
                <TaxSummary Ref="6"/>
                <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
                <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
                <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
                <FareMessage Code="0" Info="BSP - HR" Type="W"/>
                <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
                <PassengerTotalFare BaseFareAmount="4800" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="4800" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="4800" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="5700" TotalTaxes="900"/>
                <BaggageInformation AirlineCode="Y7" ProvisionType="A">
                  <Segment ID="0"/>
                  <Allowance Ref="2"/>
                </BaggageInformation>
                <PenaltiesInfo>
                  <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
              </PassengerInfo>
              <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="CNN">
                <FareComponent Ref="48">
                  <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
                </FareComponent>
                <Tax Ref="14"/>
                <Tax Ref="9"/>
                <Tax Ref="2"/>
                <TaxSummary Ref="14"/>
                <TaxSummary Ref="21"/>
                <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
                <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
                <FareMessage Code="0" Info="EACH CNN REQUIRES ACCOMPANYING SAME CABIN ADT" Type="W"/>
                <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
                <FareMessage Code="0" Info="BSP - HR" Type="W"/>
                <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
                <PassengerTotalFare BaseFareAmount="3600" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="3600" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="3600" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="4390" TotalTaxes="790"/>
                <BaggageInformation AirlineCode="Y7" ProvisionType="A">
                  <Segment ID="0"/>
                  <Allowance Ref="2"/>
                </BaggageInformation>
                <PenaltiesInfo>
                  <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
              </PassengerInfo>
              <PassengerInfo NonRefundable="true" PassengerNumber="1" PassengerType="INF">
                <FareComponent Ref="30">
                  <Segment AvailabilityBreak="true" BookingCode="B" CabinCode="Y" SeatsAvailable="9"/>
                </FareComponent>
                <CurrencyConversion ExchangeRateUsed="1" From="RUB" To="RUB"/>
                <FareMessage Carrier="Y7" Code="0" Info="NONREFUNDABLE" Type="N"/>
                <FareMessage Code="0" Info="EACH INF REQUIRES ACCOMPANYING ADT PASSENGER" Type="W"/>
                <FareMessage Code="0" Info="VALIDATING CARRIER" Type="W"/>
                <FareMessage Code="0" Info="BSP - HR" Type="W"/>
                <FareMessage Code="0" Info="CAT 15 SALES RESTRICTIONS FREE TEXT FOUND - VERIFY RULES" Type="W"/>
                <PassengerTotalFare BaseFareAmount="0" BaseFareCurrency="RUB" CommissionAmount="0" CommissionPercentage="0" ConstructionAmount="0" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="0" EquivalentCurrency="RUB" ExchangeRateOne="64.4000000" TotalFare="0" TotalTaxes="0"/>
                <BaggageInformation AirlineCode="Y7" ProvisionType="A">
                  <Segment ID="0"/>
                  <Allowance Ref="2"/>
                </BaggageInformation>
                <PenaltiesInfo>
                  <Penalty Amount="0" Applicability="Before" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Amount="0" Applicability="After" Cat16Info="true" Changeable="true" ConditionsApply="true" Currency="RUB" Type="Exchange"/>
                  <Penalty Applicability="Before" Cat16Info="true" Refundable="false" Type="Refund"/>
                  <Penalty Applicability="After" Cat16Info="true" Refundable="false" Type="Refund"/>
                </PenaltiesInfo>
              </PassengerInfo>
              <AncillaryFeeGroup Message="AIR EXTRAS NOT APPLICABLE OR ARE UNKNOWN FOR THIS ITINERARY"/>
              <TotalFare BaseFareAmount="13200" BaseFareCurrency="RUB" ConstructionAmount="13200" ConstructionCurrency="RUB" Currency="RUB" EquivalentAmount="13200" EquivalentCurrency="RUB" TotalPrice="15790" TotalTaxes="2590"/>
              <ValidatingCarrier Ref="1"/>
            </Fare>
          </PricingInformation>
        </Ticket>
      </PricingInformation>
      <DiversitySwapper WeighedPrice="26021.995"/>
    </Itinerary>
    <!--Другие варианты перелетов-->
  </ItineraryGroup>
  <!--Другие маршруты-->
</GroupedItineraryResponse>

results matching ""

    No results matching ""